aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/PropertiesView.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2024-10-04 21:35:22 -0400
committerbobzel <zzzman@gmail.com>2024-10-04 21:35:22 -0400
commit9323ad30103b474e95610e97eb92916a0cf71f7b (patch)
tree72f20d339139018bde242121eaba16e9e939c93b /src/client/views/PropertiesView.tsx
parent2e883e481fa2064983bcd16425118c1abb55cedb (diff)
more lint fixes to schema view changes.
Diffstat (limited to 'src/client/views/PropertiesView.tsx')
-rw-r--r--src/client/views/PropertiesView.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/PropertiesView.tsx b/src/client/views/PropertiesView.tsx
index 69c46052e..c6dccb4fb 100644
--- a/src/client/views/PropertiesView.tsx
+++ b/src/client/views/PropertiesView.tsx
@@ -884,7 +884,7 @@ export class PropertiesView extends ObservableReactComponent<PropertiesViewProps
@computed get borderColor() {
const doc = this.selectedDoc;
const layoutDoc = doc ? Doc.Layout(doc) : doc;
- return StrCast(layoutDoc);
+ return StrCast(layoutDoc.color);
}
set borderColor(value) { this.selectedDoc && (this.selectedDoc[DocData].color = value || undefined); } // prettier-ignore