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
b5753a52
Commit
b5753a52
authored
Apr 05, 2022
by
Jose Vargas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move action config objects to the $options object
parent
1ada2ced
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
9 deletions
+11
-9
app/assets/javascripts/packages_and_registries/dependency_proxy/app.vue
...ascripts/packages_and_registries/dependency_proxy/app.vue
+11
-9
No files found.
app/assets/javascripts/packages_and_registries/dependency_proxy/app.vue
View file @
b5753a52
...
...
@@ -52,13 +52,20 @@ export default {
blobCountAndSize
:
s__
(
'
DependencyProxy|Contains %{count} blobs of images (%{size})
'
),
pageTitle
:
s__
(
'
DependencyProxy|Dependency Proxy
'
),
noManifestTitle
:
s__
(
'
DependencyProxy|There are no images in the cache
'
),
clearCache
:
s__
(
'
DependencyProxy|Clear cache
'
),
cancel
:
__
(
'
Cancel
'
),
deleteCacheAlertMessageSuccess
:
s__
(
'
DependencyProxy|All items in the cache are scheduled for removal.
'
,
),
},
confirmClearCacheModal
:
'
confirm-clear-cache-modal
'
,
modalButtons
:
{
primary
:
{
text
:
s__
(
'
DependencyProxy|Clear cache
'
),
attributes
:
[{
variant
:
'
danger
'
}],
},
secondary
:
{
text
:
__
(
'
Cancel
'
),
},
},
links
:
{
DEPENDENCY_PROXY_DOCS_PATH
,
},
...
...
@@ -243,13 +250,8 @@ export default {
<gl-modal
:modal-id=
"$options.confirmClearCacheModal"
:title=
"modalTitleWithCount"
:action-primary=
"{
text: $options.i18n.clearCache,
attributes: [{ variant: 'danger' }],
}"
:action-secondary=
"{
text: $options.i18n.cancel,
}"
:action-primary=
"$options.modalButtons.primary"
:action-secondary=
"$options.modalButtons.secondary"
@
primary=
"submit"
>
{{ modalConfirmationMessageWithCount }}
...
...
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