Skip to content

Commit

Permalink
remove quotes from the content label
Browse files Browse the repository at this point in the history
  • Loading branch information
dontry committed Oct 2, 2024
1 parent 079576b commit 2fff2cd
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ export default {
const from = computed(() => props.context.Origin());
const params = computed(() => props.context.ref().name());
const content = computed(() => props.context.ref().Content());
const contentLabel = computed(() => content.value?.getText() ?? "");
const contentLabel = computed(
() => content.value?.getText()?.replaceAll('"', "") ?? "",
);
const contentPosition = computed(() => [
content.value?.start.start,
content.value?.stop.stop,
Expand Down

0 comments on commit 2fff2cd

Please sign in to comment.