diff options
author | bobzel <zzzman@gmail.com> | 2023-09-07 01:28:27 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-09-07 01:28:27 -0400 |
commit | e847215964bc02cf402eace30d6c9e19f5f0f0cf (patch) | |
tree | e6ae82b46c18e355af98405d11b5ad2191b872c2 /src/client/views/PropertiesView.tsx | |
parent | df4f2c01db206e54a4ada7c9210d89dc56d48438 (diff) |
truncate link descriptions over link lines. Fix schema view issues with multiline inputs. fix '#' field assignment for title bar of docs. fixed dashFieldView to read fields from texstbox by fixing FindDocByTitle to not match undefind. Don't end link_description input on Enter to allow multiline inputs.
Diffstat (limited to 'src/client/views/PropertiesView.tsx')
-rw-r--r-- | src/client/views/PropertiesView.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/views/PropertiesView.tsx b/src/client/views/PropertiesView.tsx index 6f1461fea..72ff906f6 100644 --- a/src/client/views/PropertiesView.tsx +++ b/src/client/views/PropertiesView.tsx @@ -1342,10 +1342,10 @@ export class PropertiesView extends React.Component<PropertiesViewProps> { }; onDescriptionKey = (e: React.KeyboardEvent<HTMLTextAreaElement>) => { - if (e.key === 'Enter') { - this.setDescripValue(this.description); - document.getElementById('link_description_input')?.blur(); - } + // if (e.key === 'Enter') { + // this.setDescripValue(this.description); + // document.getElementById('link_description_input')?.blur(); + // } }; onSelectOutRelationship = () => { |