We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
if
1 parent 08b21e8 commit b7dcec6Copy full SHA for b7dcec6
web_src/js/features/common-organization.js
@@ -2,6 +2,10 @@ import {initCompLabelEdit} from './comp/LabelEdit.js';
2
import {toggleElem} from '../utils/dom.js';
3
4
export function initCommonOrganization() {
5
+ if (document.querySelectorAll('.organization').length === 0) {
6
+ return;
7
+ }
8
+
9
const orgNameInput = document.querySelector('.organization.settings.options #org_name');
10
if (!orgNameInput) return;
11
orgNameInput.addEventListener('input', function () {
0 commit comments