BigW Consortium Gitlab

Commit b8957b0d by Filipa Lacerda

[ci skip] Adds quick actions link to input in discussion

parent 9daae8cc
...@@ -181,7 +181,7 @@ ...@@ -181,7 +181,7 @@
<textarea <textarea
id="note-body" id="note-body"
name="note[note]" name="note[note]"
class="note-textarea js-gfm-input js-autosize markdown-area js-note-text" class="note-textarea js-gfm-input markdown-area"
data-supports-slash-commands="true" data-supports-slash-commands="true"
data-supports-quick-actions="true" data-supports-quick-actions="true"
aria-label="Description" aria-label="Description"
......
...@@ -32,6 +32,7 @@ ...@@ -32,6 +32,7 @@
note: this.noteBody, note: this.noteBody,
markdownPreviewUrl: getIssueData.preview_note_path, markdownPreviewUrl: getIssueData.preview_note_path,
markdownDocsUrl: getNotesData.markdownDocs, markdownDocsUrl: getNotesData.markdownDocs,
quickActionsDocsUrl: getNotesData.quickActionsDocs,
conflictWhileEditing: false, conflictWhileEditing: false,
}; };
}, },
...@@ -98,7 +99,8 @@ ...@@ -98,7 +99,8 @@
<markdown-field <markdown-field
:markdown-preview-url="markdownPreviewUrl" :markdown-preview-url="markdownPreviewUrl"
:markdown-docs="markdownDocsUrl" :markdown-docs="markdownDocsUrl"
:addSpacingClasses="false"> :quick-actions-docs="quickActionsDocsUrl"
:add-spacing-classes="false">
<textarea <textarea
id="note-body" id="note-body"
name="note[note]" name="note[note]"
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
display: block; display: block;
outline: none; outline: none;
resize: none; resize: none;
height: 100vh !important; // reason being: https://github.com/vuejs/vue/issues/6246 height: 100vh;
max-height: calc(100vh - 10px); max-height: calc(100vh - 10px);
max-width: 900px; max-width: 900px;
margin: 0 auto 10px; margin: 0 auto 10px;
......
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