fix hard mutes not working

This commit is contained in:
Hazelnoot 2025-06-27 22:01:37 -04:00
parent 54ad6438af
commit 6f8d831e09

View file

@ -75,7 +75,7 @@ const props = withDefaults(defineProps<{
mutedClass?: string | string[] | Record<string, boolean> | (string | string[] | Record<string, boolean>)[];
expandedClass?: string | string[] | Record<string, boolean> | (string | string[] | Record<string, boolean>)[];
}>(), {
withHardMute: false, // TODO check default
withHardMute: true,
mutedClass: undefined,
expandedClass: undefined,
});