@lowcodeunit/applications-flow-common 1.33.212-lets-get-social-ish → 1.33.213-lets-get-social-ish
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.
- package/esm2020/lib/elements/main-feed-card/main-feed-card.component.mjs +8 -2
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +7 -1
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +7 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -3851,7 +3851,13 @@ class MainFeedCardComponent {
|
|
|
3851
3851
|
}
|
|
3852
3852
|
}
|
|
3853
3853
|
else if (action.ActionType == 'Modal') {
|
|
3854
|
-
|
|
3854
|
+
if (action.Action == 'AddSourceControl') {
|
|
3855
|
+
// TODO: George launch source control modal
|
|
3856
|
+
alert('AddSourceControl modaled');
|
|
3857
|
+
}
|
|
3858
|
+
else {
|
|
3859
|
+
alert('other modaled ' + action.Action);
|
|
3860
|
+
}
|
|
3855
3861
|
}
|
|
3856
3862
|
}
|
|
3857
3863
|
handleRefresh() {
|