Commit d6585e97 authored by jerasmus's avatar jerasmus

Replace BSTooltip with GlTooltip

Replaced the old tooltip
parent 9401d113
......@@ -4,6 +4,7 @@ import { __ } from '~/locale';
import { deprecatedCreateFlash as Flash } from '~/flash';
import axios from '~/lib/utils/axios_utils';
import SSHMirror from './ssh_mirror';
import { hide } from '~/tooltips';
export default class MirrorRepos {
constructor(container) {
......@@ -115,7 +116,7 @@ export default class MirrorRepos {
/* eslint-disable class-methods-use-this */
removeRow($target) {
const row = $target.closest('tr');
$('.js-delete-mirror', row).tooltip('hide');
hide($('.js-delete-mirror', row));
row.remove();
}
/* eslint-enable class-methods-use-this */
......
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