rails_modal_manager 1.0.27 → 1.0.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ebcb6d9bc5128b747b71ad201b2e9fad380dc7d788064b373ff8b320ea79c47e
|
|
4
|
+
data.tar.gz: fad2c3da1a425a4f565eafac8d22b3ae58393964494eff0ee5d854aee9a431aa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e319bb433378cc2eb60025c84f98c8fa47286334895e9b588b80c5cc5b0c6476c6cfe5b444261048c8fc736994ffd8f7b9d4c7ca24de4fa44a9570104fb69d2f
|
|
7
|
+
data.tar.gz: 1fd5038104cff012f5ba60f92cea95eea006e95b5c6f6ff8b592031ffcd586342a0a166c03cc000daa70301d4958dfeb4ef39f67815ba9cd32c4dc21bf0c106b
|
|
@@ -205,19 +205,14 @@ export default class extends Controller {
|
|
|
205
205
|
return
|
|
206
206
|
}
|
|
207
207
|
|
|
208
|
-
//
|
|
209
|
-
|
|
210
|
-
if (submenuId) {
|
|
211
|
-
this.triggerSubmenuReload(submenuId)
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
// 이벤트 발생
|
|
208
|
+
// 이벤트만 발생 (커스텀 컨트롤러에서 콘텐츠 로드 처리)
|
|
209
|
+
// triggerSubmenuReload는 호출하지 않음 - 중복 로드 방지
|
|
215
210
|
this.dispatch('itemSelect', {
|
|
216
211
|
detail: {
|
|
217
212
|
modalId: this.modalIdValue,
|
|
218
213
|
itemId: item.dataset.itemId,
|
|
219
214
|
itemLabel: item.dataset.itemLabel,
|
|
220
|
-
hasSubmenu: !!submenuId,
|
|
215
|
+
hasSubmenu: !!item.dataset.submenuId,
|
|
221
216
|
isReselect: true,
|
|
222
217
|
}
|
|
223
218
|
})
|