Skip to content

Commit

Permalink
fix(ui): re-add style prop to Notification component
Browse files Browse the repository at this point in the history
Introduced the `style` prop again in the Notification component to allow
customizable styling. The prop supports both string and object types,
with a default value of `undefined`.
  • Loading branch information
luannmoreira authored and gustavosbarreto committed Dec 17, 2024
1 parent 258b5f6 commit 0c293db
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ui/src/components/AppBar/Notifications/Notification.vue
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,12 @@ import DeviceActionButton from "../../../components/Devices/DeviceActionButton.v
import handleError from "../../../utils/handleError";
const store = useStore();
defineProps({
style: {
type: [String, Object],
default: undefined,
},
});
const show = ref(false);
const inANamespace = ref(false);
Expand Down

0 comments on commit 0c293db

Please sign in to comment.