fix(ui): match Open sync status ribbon icon to the view icon

The ribbon button used 'list-checks' while the Sync Status view itself
uses 'git-compare' (getIcon). Use 'git-compare' for the ribbon too so the
"Open sync status" icon matches the sync status view icon.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01DwioG4CNKUBuKiZdowLFWe
This commit is contained in:
Claude 2026-06-28 04:23:57 +00:00
parent f2037f955a
commit 9bc8ab7d08
No known key found for this signature in database

View file

@ -24,7 +24,7 @@ export default class GitLabFilesPush extends Plugin {
(leaf) => new SyncStatusView(leaf, this)
);
this.addRibbonIcon('list-checks', 'Open sync status', async () => {
this.addRibbonIcon('git-compare', 'Open sync status', async () => {
await this.activateSyncStatusView();
});