Skip to content

Commit

Permalink
small usability improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
justintucker1 committed Oct 28, 2024
1 parent 4becf75 commit 015df44
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion webviews/src/views/RokuAutomationView/AutoRunsEditor.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@
<div id="editor">
<div id="selection">
<div id="selection-text">{selectedRun}</div>
<div id="selection-text" title={selectedRun}>{selectedRun}</div>
<vscode-button
id="selection-button"
title="Edit Runs"
Expand Down Expand Up @@ -321,13 +321,15 @@
<td style="text-align: end;">
<vscode-button
id="copy-button"
title={`Copy '${run.name}'`}
on:click={copyRun}
appearance="icon"
aria-label={run.name}>
<Copy />
</vscode-button>
<vscode-button
id="delete-button"
title={`Delete '${run.name}'`}
on:click={deleteRun}
appearance="icon"
aria-label={run.name}>
Expand Down

0 comments on commit 015df44

Please sign in to comment.