Commit 72b01fdd authored by Tim Zallmann's avatar Tim Zallmann

Incremental Rendering

parent 66cde870
import Vue from 'vue'; import Vue from 'vue';
import '../vue_shared/vue_resource_interceptor'; import '../vue_shared/vue_resource_interceptor';
// Vue.config.performance = true; Vue.config.performance = true;
if (process.env.NODE_ENV !== 'production') { if (process.env.NODE_ENV !== 'production') {
Vue.config.productionTip = false; Vue.config.productionTip = false;
......
...@@ -177,10 +177,10 @@ export default { ...@@ -177,10 +177,10 @@ export default {
title="Add a comment to this line" title="Add a comment to this line"
@click="handleCommentButton" @click="handleCommentButton"
> >
<!--<icon <icon
:size="12" :size="12"
name="comment" name="comment"
/>--> />
</button> </button>
<a <a
v-if="lineNumber" v-if="lineNumber"
......
...@@ -8,6 +8,7 @@ const defaultViewType = INLINE_DIFF_VIEW_TYPE; ...@@ -8,6 +8,7 @@ const defaultViewType = INLINE_DIFF_VIEW_TYPE;
export default () => ({ export default () => ({
isLoading: true, isLoading: true,
loadingMessage: '',
endpoint: '', endpoint: '',
basePath: '', basePath: '',
commit: null, commit: null,
......
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