refactor: refs #8440 remove unused 'style' attribute from computed $attrs in VnNotes component
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Jose Antonio Tubau 2025-03-04 10:24:52 +01:00
parent ad96392cba
commit ae502d5fac
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ const emit = defineEmits(['onFetch']);
const originalAttrs = useAttrs();
const $attrs = computed(() => {
const { style, required, deletable, ...rest } = originalAttrs;
const { required, deletable, ...rest } = originalAttrs;
return rest;
});