fix(profile): disable SSH key validation in key details view

This commit is contained in:
Roger Meier 2019-05-07 16:48:23 +00:00 committed by Clement Ho
parent c4fcac0625
commit fc255486fb
2 changed files with 7 additions and 0 deletions

View File

@ -2,6 +2,8 @@ import AddSshKeyValidation from '~/profile/add_ssh_key_validation';
document.addEventListener('DOMContentLoaded', () => {
const input = document.querySelector('.js-add-ssh-key-validation-input');
if (!input) return;
const warning = document.querySelector('.js-add-ssh-key-validation-warning');
const originalSubmit = input.form.querySelector('.js-add-ssh-key-validation-original-submit');
const confirmSubmit = warning.querySelector('.js-add-ssh-key-validation-confirm-submit');

View File

@ -0,0 +1,5 @@
---
title: disable SSH key validation in key details view
merge_request: 28180
author: Roger Meier
type: fixed