diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-01-11 16:53:58 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-01-11 16:53:58 -0500 |
commit | 609ceedaba6cd42e7025f1a15ebfeb26c69bab80 (patch) | |
tree | 2e781b48ba39d73d0dd60a1e2ae0f82c23c0279e /src/SMAPI.Web/Views/Mods/Index.cshtml | |
parent | 219696275df054d25cd385f950eb01ee33312e76 (diff) | |
download | SMAPI-609ceedaba6cd42e7025f1a15ebfeb26c69bab80.tar.gz SMAPI-609ceedaba6cd42e7025f1a15ebfeb26c69bab80.tar.bz2 SMAPI-609ceedaba6cd42e7025f1a15ebfeb26c69bab80.zip |
update for compatibility list change
Diffstat (limited to 'src/SMAPI.Web/Views/Mods/Index.cshtml')
-rw-r--r-- | src/SMAPI.Web/Views/Mods/Index.cshtml | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/SMAPI.Web/Views/Mods/Index.cshtml b/src/SMAPI.Web/Views/Mods/Index.cshtml index 50b59b45..5b310d55 100644 --- a/src/SMAPI.Web/Views/Mods/Index.cshtml +++ b/src/SMAPI.Web/Views/Mods/Index.cshtml @@ -110,11 +110,8 @@ else <small> <a v-bind:href="'#' + mod.Slug">#</a> <span v-show="showAdvanced"> - <template v-for="(link, i) in mod.MetadataLinks"> - <a v-bind:href="link.Item1">{{link.Item2}}</a> - </template> - - <abbr v-bind:title="mod.DevNote" v-show="mod.DevNote">[dev note]</abbr> + <a v-bind:href="mod.PullRequestUrl" v-if="mod.PullRequestUrl">PR</a> + <abbr v-bind:title="mod.DevNote" v-if="mod.DevNote">[dev note]</abbr> </span> </small> </td> |