Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
8f95de86
Commit
8f95de86
authored
Feb 26, 2020
by
lauraMon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replaces loading_button with gl-button
parent
304a69bb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
11 deletions
+12
-11
app/assets/javascripts/error_tracking/components/error_details.vue
...s/javascripts/error_tracking/components/error_details.vue
+12
-11
No files found.
app/assets/javascripts/error_tracking/components/error_details.vue
View file @
8f95de86
...
...
@@ -15,7 +15,6 @@ import {
GlDropdownDivider
,
}
from
'
@gitlab/ui
'
;
import
{
__
,
sprintf
,
n__
}
from
'
~/locale
'
;
import
LoadingButton
from
'
~/vue_shared/components/loading_button.vue
'
;
import
Icon
from
'
~/vue_shared/components/icon.vue
'
;
import
TooltipOnTruncate
from
'
~/vue_shared/components/tooltip_on_truncate.vue
'
;
import
Stacktrace
from
'
./stacktrace.vue
'
;
...
...
@@ -28,7 +27,6 @@ import query from '../queries/details.query.graphql';
export
default
{
components
:
{
LoadingButton
,
GlButton
,
GlFormInput
,
GlLink
,
...
...
@@ -234,19 +232,21 @@ export default {
</div>
<div
class=
"error-details-actions"
>
<div
class=
"d-inline-flex bv-d-sm-down-none"
>
<loading-button
:label=
"ignoreBtnLabel"
<gl-button
:loading=
"updatingIgnoreStatus"
data-qa-selector=
"update_ignore_status_button"
@
click=
"onIgnoreStatusUpdate"
/>
<loading-button
>
{{ ignoreBtnLabel }}
</gl-button>
<gl-button
class=
"btn-outline-info ml-2"
:label=
"resolveBtnLabel"
:loading=
"updatingResolveStatus"
data-qa-selector=
"update_resolve_status_button"
@
click=
"onResolveStatusUpdate"
/>
>
{{ resolveBtnLabel }}
</gl-button>
<gl-button
v-if=
"error.gitlabIssuePath"
class=
"ml-2"
...
...
@@ -270,14 +270,15 @@ export default {
name=
"issue[sentry_issue_attributes][sentry_issue_identifier]"
/>
<gl-form-input
:value=
"csrfToken"
class=
"hidden"
name=
"authenticity_token"
/>
<
loading
-button
<
gl
-button
v-if=
"!error.gitlabIssuePath"
class=
"btn-success"
:label=
"__('Create issue')"
:loading=
"issueCreationInProgress"
data-qa-selector=
"create_issue_button"
@
click=
"createIssue"
/>
>
{{ __('Create issue') }}
</gl-button>
</form>
</div>
<gl-dropdown
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment