Skip to content

Commit 97ecf0c

Browse files
committed
Guides: Remove references to undefined consts
1 parent 564eb4f commit 97ecf0c

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

en/Plugins/Guides/Build a Bases view.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,7 @@ export class MyBasesView extends BasesView implements HoverParent {
142142

143143
// The property separator configured by the ViewOptions above can be
144144
// retrieved from the view config. Be sure to set a default value.
145-
const propertySeparator = String(
146-
this.config.get(PROPERTY_SEPARATOR_KEY) ||
147-
DEFAULT_PROPERTY_SEPARATOR
148-
);
145+
const propertySeparator = String(this.config.get('separator')) || ' - ';
149146

150147
// this.data contains both grouped and ungrouped versions of the data.
151148
// If it's appropriate for your view type, use the grouped form.

0 commit comments

Comments
 (0)