Balázs Németh
Balázs Németh
I am not a fan of storing empty strings either, but reasonable use cases max exist. It's not an example I'd use personally, but in `view` you could decide to...
Fixed in https://github.com/phalcon/cphalcon/pull/15163
This issue will reopened later and fixed for 5.0
@jenovateurs, could you help with this?
I found out that `process.versions.node` is undefined and there are a lot of packages in my dependencies that rely on that it's a string. For example: ```js const [maj, min]...
Workaround: Create a `build.config.ts` with the following: ```ts import { defineBuildConfig } from 'unbuild'; export default defineBuildConfig({ rollup: { esbuild: { tsconfigRaw: { compilerOptions: { experimentalDecorators: true, }, }, },...
I have the same issue and found none of the mentioned workarounds working. It's an ESM-only project that's running on CF Workers, but my dev server fails to import anything...
I tested the original `` component, and replacing `await loadIcon(resolvedIcon.value).catch(() => undefined)` with `undefined` stops the errors.
Reproduction: https://github.com/zsilbi/nuxt-icon-workerd
I have the same problem. 1. I call `column.toggleSorting()` 2. `column.getAutoSortDir()` returns `asc` because the first value is a `string`, so the column will be sorted `asc` initially. https://github.com/TanStack/table/blob/a1e9732e6fc3446a2ae80db72a1f2b46a5c11e46/packages/table-core/src/features/Sorting.ts#L332-L342 3....