Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
chore(widgets): remove unneeded nullish coalescing
Signed-off-by: Grigorii K. Shartsev <[email protected]>
  • Loading branch information
ShGKme committed Apr 11, 2024
commit fb212e5f2508a2ee1fce72948f9f1d05298f2424
2 changes: 1 addition & 1 deletion src/functions/reference/widgets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const hasInteractiveView = (id: string) => {
}

export const hasFullWidth = (id: string) => {
return !!window._vue_richtext_widgets[id]?.fullWidth ?? false
return !!window._vue_richtext_widgets[id]?.fullWidth
}

// eslint-disable-next-line @typescript-eslint/no-unused-vars
Expand Down