aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/PropertiesView.tsx
diff options
context:
space:
mode:
authoreleanor-park <eleanor_park@brown.edu>2024-08-27 20:43:24 -0400
committereleanor-park <eleanor_park@brown.edu>2024-08-27 20:43:24 -0400
commitf5b04341893da68e50b0cbc72d77795209bfee3e (patch)
treebf3c5ca83af6a17371f3c9d5b215668c8db9a8d2 /src/client/views/PropertiesView.tsx
parenta21744ddbbc026b64b028b624c3d7c4000706a25 (diff)
still trying to resolve merge issues
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 6cf16825a..bbe422e9e 100644
--- a/src/client/views/PropertiesView.tsx
+++ b/src/client/views/PropertiesView.tsx
@@ -1018,7 +1018,7 @@ export class PropertiesView extends ObservableReactComponent<PropertiesViewProps
@computed get dashdStk() { return this.containsInkDoc? this.inkDoc?.stroke_dash || '' : this.selectedDoc?.stroke_dash || ''; } // prettier-ignore
set dashdStk(value) {
- value && (this._lastDash = value);
+ value && (this._lastDash = value as string);
if (this.containsInkDoc) {
const childDocs = DocListCast(this.selectedDoc[DocData].data);
childDocs.forEach(doc => {