Update app_v3.py
Browse files
app_v3.py
CHANGED
@@ -1295,7 +1295,7 @@ def _(
|
|
1295 |
|
1296 |
get_data_asset_id_list = mo.ui.button(
|
1297 |
label="Turn Dataframe into List of IDs",
|
1298 |
-
on_click=lambda _: get_data_asset_ids(get_data_assets_button.value),
|
1299 |
kind="neutral",
|
1300 |
)
|
1301 |
|
@@ -1314,7 +1314,7 @@ def _(
|
|
1314 |
|
1315 |
get_deployment_id_list = mo.ui.button(
|
1316 |
label="Turn Dataframe into List of IDs",
|
1317 |
-
on_click=lambda _: get_deployment_ids(get_deployments_button.value),
|
1318 |
kind="neutral",
|
1319 |
)
|
1320 |
|
@@ -1333,7 +1333,7 @@ def _(
|
|
1333 |
|
1334 |
get_repository_id_list = mo.ui.button(
|
1335 |
label="Turn Dataframe into List of IDs",
|
1336 |
-
on_click=lambda _: get_repository_ids(get_repository_button.value),
|
1337 |
kind="neutral",
|
1338 |
)
|
1339 |
|
|
|
1295 |
|
1296 |
get_data_asset_id_list = mo.ui.button(
|
1297 |
label="Turn Dataframe into List of IDs",
|
1298 |
+
on_click=lambda _: get_data_asset_ids(get_data_assets_button.value.value),
|
1299 |
kind="neutral",
|
1300 |
)
|
1301 |
|
|
|
1314 |
|
1315 |
get_deployment_id_list = mo.ui.button(
|
1316 |
label="Turn Dataframe into List of IDs",
|
1317 |
+
on_click=lambda _: get_deployment_ids(get_deployments_button.value.value),
|
1318 |
kind="neutral",
|
1319 |
)
|
1320 |
|
|
|
1333 |
|
1334 |
get_repository_id_list = mo.ui.button(
|
1335 |
label="Turn Dataframe into List of IDs",
|
1336 |
+
on_click=lambda _: get_repository_ids(get_repository_button.value.value),
|
1337 |
kind="neutral",
|
1338 |
)
|
1339 |
|