Skip to content

Commit

Permalink
rename buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
blurymind committed Sep 9, 2024
1 parent b9d699c commit fdc03fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/public/plugins/resources-editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ export var ResourcesEditor = function({
<div class="button-group-rounded" id="add-remove-resource-file" style="flex-wrap:nowrap">
<button id="add-resource-file" onclick="${domPath}.onAddNewFile()" title="Add">+</button>
<button id="remove-resource-file" onclick="${domPath}.onRemoveSelectedFile()" title="remove">─</button>
<button id="remove-resource-file" onclick="${domPath}.onGetFromGist()" title="get from gist"> ⟳ </button>
<button id="remove-resource-file" onclick="${domPath}.onGetFromGist()" title="search for new in gist"> ⟳ </button>
</div>
</span>
</div>
Expand Down Expand Up @@ -322,7 +322,7 @@ export var ResourcesEditor = function({
file,
gistId: this.gistId ,
darkMode: app.settings.theme() === 'dracula',
headerButtons: [{title: 'Load from gist', action: 'pull'}, {title: 'Save to gist', action: 'push'}]
headerButtons: [{title: 'Pull from gist', action: 'pull'}, {title: 'Commit to gist', action: 'push'}]
})
}
this.initResourcesFile().then(file => {
Expand Down

0 comments on commit fdc03fd

Please sign in to comment.