fix: support refactored SNJS history
This commit is contained in:
@@ -17,12 +17,12 @@
|
||||
)
|
||||
menu-row(
|
||||
action='ctrl.toggleSessionHistoryAutoOptimize()'
|
||||
label="(ctrl.autoOptimize ? 'Disable' : 'Enable') + ' auto cleanup'")
|
||||
label="(ctrl.state.autoOptimize ? 'Disable' : 'Enable') + ' auto cleanup'")
|
||||
.sk-sublabel
|
||||
| Automatically cleans up small revisions to conserve space.
|
||||
menu-row(
|
||||
action='ctrl.toggleSessionHistoryDiskSaving()'
|
||||
label="(ctrl.diskEnabled ? 'Disable' : 'Enable') + ' saving history to disk'"
|
||||
label="(ctrl.state.diskEnabled ? 'Disable' : 'Enable') + ' saving history to disk'"
|
||||
)
|
||||
.sk-sublabel
|
||||
| Saving to disk is not recommended. Decreases performance and increases app
|
||||
@@ -49,7 +49,7 @@
|
||||
.sk-sublabel
|
||||
| Fetch history from server.
|
||||
menu-row(
|
||||
ng-repeat='revision in ctrl.remoteHistoryEntries track by $index'
|
||||
ng-repeat='revision in ctrl.remoteHistory track by $index'
|
||||
action='ctrl.openRemoteRevision(revision);'
|
||||
label='ctrl.previewRemoteHistoryTitle(revision);'
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user