Commit 77ab714a authored by Jacob Schatz's avatar Jacob Schatz

fixes md rendering

parent 5ea4942a
...@@ -75,7 +75,7 @@ function initRepo() { ...@@ -75,7 +75,7 @@ function initRepo() {
<repo-binary-viewer/> <repo-binary-viewer/>
</div> </div>
<repo-commit-section/> <repo-commit-section/>
<popup-dialog :open="dialog.open" kind="warning" title="Are you sure?" body="Are you sure you want to discard your changes?" @toggle="dialogToggled" @submit="dialogSubmitted"></popup-dialog> <popup-dialog primary-button-label="Discard changes" :open="dialog.open" kind="warning" title="Are you sure?" body="Are you sure you want to discard your changes?" @toggle="dialogToggled" @submit="dialogSubmitted"></popup-dialog>
</div> </div>
`, `,
mixins: [RepoMixin], mixins: [RepoMixin],
......
...@@ -60,7 +60,7 @@ export default RepoBinaryViewer; ...@@ -60,7 +60,7 @@ export default RepoBinaryViewer;
<div id="binary-viewer" v-if="binary && !activeFile.raw"> <div id="binary-viewer" v-if="binary && !activeFile.raw">
<img v-show="binaryTypes.png && binaryLoaded" @error="errored" @load="loaded" :src="pngBlobWithDataURI" :alt="activeFile.name"/> <img v-show="binaryTypes.png && binaryLoaded" @error="errored" @load="loaded" :src="pngBlobWithDataURI" :alt="activeFile.name"/>
<img v-show="binaryTypes.svg" @error="errored" @load="loaded" :src="svgBlobWithDataURI" :alt="activeFile.name"/> <img v-show="binaryTypes.svg" @error="errored" @load="loaded" :src="svgBlobWithDataURI" :alt="activeFile.name"/>
<div v-if="binaryTypes.markdown" v-html="activeFile.html"></div> <div v-if="binaryTypes.md" v-html="activeFile.html"></div>
<div class="binary-unknown" v-if="binaryTypes.unknown"> <div class="binary-unknown" v-if="binaryTypes.unknown">
<span>Binary file. No preview available.</span> <span>Binary file. No preview available.</span>
</div> </div>
......
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