Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

PUBLIC / surfer-okd

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Commit a6bb6a4b authored 8 years ago by Johannes Zellner's avatar Johannes Zellner
Browse files
Options
  • Browse Files
  • Download
  • Email Patches
  • Plain Diff

current directory in breadcrumb is not a link

1 parent 8501cf88
Show whitespace changes
Inline Side-by-side
Showing with 2 additions and 1 deletions
  • frontend/index.html
frontend/index.html
View file @a6bb6a4
...@@ -131,9 +131,10 @@ ...@@ -131,9 +131,10 @@
<div class="col-lg-12"> <div class="col-lg-12">
<ol class="breadcrumb"> <ol class="breadcrumb">
<li><a href="#/"><i class="fa fa-home"></i></a></li> <li><a href="#/"><i class="fa fa-home"></i></a></li>
<li v-for="part in pathParts"> <li v-for="part in pathParts.slice(0, -1)">
<a href="{{ part.link }}">{{ part.name }}</a> <a href="{{ part.link }}">{{ part.name }}</a>
</li> </li>
<li>{{ pathParts.slice(-1)[0].name }}</li>
<button class="btn btn-default btn-sm pull-right" v-on:click="createDirectoryAsk()">Create Directory</button> <button class="btn btn-default btn-sm pull-right" v-on:click="createDirectoryAsk()">Create Directory</button>
</ol> </ol>
</div> </div>
......
This diff is collapsed. Click to expand it.
  • Write
  • Preview
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
  • Please register or sign in to post a comment