🎨 Improve readability by reformatting computed property definition

This commit is contained in:
2026-01-29 04:00:42 +00:00
parent 51ca3dc2c4
commit 1d6e1ca196

View File

@@ -129,7 +129,9 @@ const internalSelectionState = useLineSelection(
fileContent,
selectedFile
);
const activeSelectionState = computed(() => props.selectionState || internalSelectionState);
const activeSelectionState = computed(
() => props.selectionState || internalSelectionState
);
const { selectedLines, toggleLineSelection } = activeSelectionState.value;
const isCurrentResult = lineNumber => {