Commit 8aec9de8 authored by Taurie Davis's avatar Taurie Davis

Migrate license policy submit loading button

parent 5223e316
<script> <script>
import { GlButton } from '@gitlab/ui'; import { GlButton } from '@gitlab/ui';
import LoadingButton from '~/vue_shared/components/loading_button.vue';
import { LICENSE_APPROVAL_STATUS } from '../constants'; import { LICENSE_APPROVAL_STATUS } from '../constants';
import AddLicenseFormDropdown from './add_license_form_dropdown.vue'; import AddLicenseFormDropdown from './add_license_form_dropdown.vue';
import { s__ } from '~/locale'; import { s__ } from '~/locale';
...@@ -10,7 +9,6 @@ export default { ...@@ -10,7 +9,6 @@ export default {
components: { components: {
AddLicenseFormDropdown, AddLicenseFormDropdown,
GlButton, GlButton,
LoadingButton,
}, },
LICENSE_APPROVAL_STATUS, LICENSE_APPROVAL_STATUS,
approvalStatusOptions: [ approvalStatusOptions: [
...@@ -86,17 +84,21 @@ export default { ...@@ -86,17 +84,21 @@ export default {
</label> </label>
</div> </div>
</div> </div>
<loading-button <div class="gl-display-flex">
class="js-submit" <gl-button
:disabled="submitDisabled" class="js-submit"
:loading="loading" :disabled="submitDisabled"
container-class="btn btn-success btn-align-content d-inline-flex" :loading="loading"
:label="s__('LicenseCompliance|Submit')" category="primary"
data-qa-selector="add_license_submit_button" variant="success"
@click="addLicense" data-qa-selector="add_license_submit_button"
/> @click="addLicense"
<gl-button class="js-cancel" :disabled="loading" @click="closeForm"> >
{{ s__('LicenseCompliance|Cancel') }} {{ __('Submit') }}
</gl-button> </gl-button>
<gl-button class="js-cancel ml-2" :disabled="loading" @click="closeForm">
{{ __('Cancel') }}
</gl-button>
</div>
</div> </div>
</template> </template>
...@@ -13444,9 +13444,6 @@ msgstr "" ...@@ -13444,9 +13444,6 @@ msgstr ""
msgid "LicenseCompliance|Allowed" msgid "LicenseCompliance|Allowed"
msgstr "" msgstr ""
msgid "LicenseCompliance|Cancel"
msgstr ""
msgid "LicenseCompliance|Denied" msgid "LicenseCompliance|Denied"
msgstr "" msgstr ""
...@@ -13506,9 +13503,6 @@ msgstr "" ...@@ -13506,9 +13503,6 @@ msgstr ""
msgid "LicenseCompliance|Remove license?" msgid "LicenseCompliance|Remove license?"
msgstr "" msgstr ""
msgid "LicenseCompliance|Submit"
msgstr ""
msgid "LicenseCompliance|There are currently no approved or blacklisted licenses in this project." msgid "LicenseCompliance|There are currently no approved or blacklisted licenses in this project."
msgstr "" msgstr ""
...@@ -22150,6 +22144,9 @@ msgstr "" ...@@ -22150,6 +22144,9 @@ msgstr ""
msgid "Subkeys" msgid "Subkeys"
msgstr "" msgstr ""
msgid "Submit"
msgstr ""
msgid "Submit %{humanized_resource_name}" msgid "Submit %{humanized_resource_name}"
msgstr "" msgstr ""
......
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