Skip to content

Commit

Permalink
Fix optional props in historyempty
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed Nov 15, 2023
1 parent a467908 commit 8d8a66d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/components/History/CurrentHistory/HistoryEmpty.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ const { emit } = useEventBus("open-tool-section");
const props = withDefaults(
defineProps<{
message: string;
writable: boolean;
message?: string;
writable?: boolean;
}>(),
{
message: "This history is empty.",
Expand Down

0 comments on commit 8d8a66d

Please sign in to comment.