@hostlink/nuxt-light 1.14.0 → 1.14.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/module.json
CHANGED
|
@@ -261,6 +261,7 @@ const onRequest = async (p: any) => {
|
|
|
261
261
|
props.columns?.forEach((col) => {
|
|
262
262
|
if (col.gqlField) {
|
|
263
263
|
builder.add(col.gqlField);
|
|
264
|
+
return;
|
|
264
265
|
}
|
|
265
266
|
|
|
266
267
|
if (!col.name) return;
|
|
@@ -431,7 +432,7 @@ const onDelete = async (id: any) => {
|
|
|
431
432
|
const attrs = computed(() => {
|
|
432
433
|
return {
|
|
433
434
|
...props,
|
|
434
|
-
|
|
435
|
+
|
|
435
436
|
...{
|
|
436
437
|
dense: light.getStyle("tableDense"),
|
|
437
438
|
flat: light.getStyle("tableFlat"),
|
package/package.json
CHANGED