diff options
| author | bobzel <zzzman@gmail.com> | 2024-03-27 11:02:57 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-03-27 11:02:57 -0400 |
| commit | bf6d1973cc81ba695afcca102c7229608faaa7e6 (patch) | |
| tree | fb4660d424838d2690e3e468dc3de87b9d23813b /src/client/views/TemplateMenu.tsx | |
| parent | b420caf2c7ecd386cae2cc550904522474b541aa (diff) | |
changed dashFieldViews to support Tab'ing between other dashFieldviews, changed deleting links to clear out the anchors so that linkBoxes will go away more easiliy. changed funcitonPlot to plot the equations that are linked to it. changed equations to link to functions. changed undo and other console logging to only happen when undo docked buttons are expanded (visible)
Diffstat (limited to 'src/client/views/TemplateMenu.tsx')
| -rw-r--r-- | src/client/views/TemplateMenu.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/TemplateMenu.tsx b/src/client/views/TemplateMenu.tsx index e7269df98..5df0bea1a 100644 --- a/src/client/views/TemplateMenu.tsx +++ b/src/client/views/TemplateMenu.tsx @@ -99,7 +99,7 @@ export class TemplateMenu extends React.Component<TemplateMenuProps> { .forEach(template => templateMenu.push(<OtherToggle key={template} name={template} checked={templateName === template} toggle={e => this.toggleLayout(e, template)} />)); return ( <ul className="template-list"> - {Doc.noviceMode ? null : <input placeholder="+ layout" ref={this._customRef} onKeyPress={this.onCustomKeypress} />} + {Doc.noviceMode ? null : <input placeholder="+ layout" ref={this._customRef} onKeyDown={this.onCustomKeypress} />} {templateMenu} <CollectionTreeView Document={Doc.MyTemplates} |
