@mongoosejs/studio 0.0.49 → 0.0.50
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/frontend/public/tw.css +5 -5
- package/frontend/src/api.js +1 -1
- package/package.json +1 -1
package/frontend/public/tw.css
CHANGED
|
@@ -975,6 +975,11 @@ video {
|
|
|
975
975
|
background-color: rgb(22 163 74 / var(--tw-bg-opacity));
|
|
976
976
|
}
|
|
977
977
|
|
|
978
|
+
.bg-red-300 {
|
|
979
|
+
--tw-bg-opacity: 1;
|
|
980
|
+
background-color: rgb(252 165 165 / var(--tw-bg-opacity));
|
|
981
|
+
}
|
|
982
|
+
|
|
978
983
|
.bg-red-50 {
|
|
979
984
|
--tw-bg-opacity: 1;
|
|
980
985
|
background-color: rgb(254 242 242 / var(--tw-bg-opacity));
|
|
@@ -1019,11 +1024,6 @@ video {
|
|
|
1019
1024
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
1020
1025
|
}
|
|
1021
1026
|
|
|
1022
|
-
.bg-red-300 {
|
|
1023
|
-
--tw-bg-opacity: 1;
|
|
1024
|
-
background-color: rgb(252 165 165 / var(--tw-bg-opacity));
|
|
1025
|
-
}
|
|
1026
|
-
|
|
1027
1027
|
.bg-yellow-300 {
|
|
1028
1028
|
--tw-bg-opacity: 1;
|
|
1029
1029
|
background-color: rgb(253 224 71 / var(--tw-bg-opacity));
|
package/frontend/src/api.js
CHANGED
|
@@ -30,7 +30,7 @@ client.interceptors.response.use(
|
|
|
30
30
|
|
|
31
31
|
if (config__isLambda) {
|
|
32
32
|
exports.status = function status() {
|
|
33
|
-
return client.
|
|
33
|
+
return client.post('', { action: 'status' }).then(res => res.data);
|
|
34
34
|
};
|
|
35
35
|
exports.Dashboard = {
|
|
36
36
|
createDashboard(params) {
|