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.
1 parent 2a44c06 commit faaaac9Copy full SHA for faaaac9
src/bundle/Resources/public/js/CKEditor/link/ui/link-form-view.js
@@ -145,6 +145,12 @@ class IbexaLinkFormView extends View {
145
this.setChoiceValue(this.classesView, ibexaLinkClasses);
146
}
147
148
+ if (url.includes('ezlocation://')) {
149
+ const locationId = url.replace('ezlocation://', '');
150
+
151
+ this.fetchSiteaccesses(locationId);
152
+ }
153
154
Object.entries(ibexaLinkAttributes).forEach(([name, value]) => {
155
const attributeView = this.attributeViews[`ibexaLink${name}`];
156
const setValueMethod = this.setValueMethods[this.customAttributes[name].type];
0 commit comments