Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
Add View File label to commit browse
Sebastian Martinez committed 3 years ago
commit 34f575ad98117aa246b9d56c1826a0c8a43336e1
parent e675e9163878798ea0f95349ddb0f2b1c31d18de
2 files changed +2 -2
modified src/base/projects/Commit/CommitTeaser.svelte
@@ -96,7 +96,7 @@
  <div class="column-right">
    <CommitVerifiedBadge {commit} />
    <span class="secondary hash">{formatCommit(commit.header.sha1)}</span>
-
    <div class="browse" on:click|stopPropagation={() => browseCommit(commit.header.sha1)}>
+
    <div class="browse" title="View file" on:click|stopPropagation={() => browseCommit(commit.header.sha1)}>
      <Icon name="browse" width={17} inline fill />
    </div>
  </div>
modified src/base/projects/SourceBrowser/FileDiff.svelte
@@ -146,7 +146,7 @@
      {/if}
    </div>
    <div class="browse clickable" on:click|stopPropagation={() => dispatch("browse", file.path)}>
-
      <Icon name="browse" width={20} inline fill />
+
      <Icon name="browse" title="View file" width={20} inline fill />
    </div>
  </header>
  {#if !collapsed}