Commit 4ae39ceb authored by Luke "Jared" Bennett's avatar Luke "Jared" Bennett

Add key for v-for in repo_commit_section

parent db355041
...@@ -59,7 +59,7 @@ export default RepoCommitSection; ...@@ -59,7 +59,7 @@ export default RepoCommitSection;
<label class="col-md-4 control-label">Staged files ({{changedFiles.length}})</label> <label class="col-md-4 control-label">Staged files ({{changedFiles.length}})</label>
<div class="col-md-4"> <div class="col-md-4">
<ul class="list-unstyled"> <ul class="list-unstyled">
<li v-for="file in changedFiles"> <li v-for="file in changedFiles" :key="file.id">
<span class="help-block"> <span class="help-block">
{{file.url}} {{file.url}}
</span> </span>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment