mario-education 2.4.70-admin → 2.4.71-admin
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/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +7 -7
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -10012,7 +10012,7 @@ var Training = function Training() {
|
|
|
10012
10012
|
handleSubmit = formikProps.handleSubmit;
|
|
10013
10013
|
return React.createElement(Row, null, React.createElement(Col, {
|
|
10014
10014
|
md: 7,
|
|
10015
|
-
className: "
|
|
10015
|
+
className: "my-4"
|
|
10016
10016
|
}, React.createElement(Label, {
|
|
10017
10017
|
style: {
|
|
10018
10018
|
fontWeight: 700
|
|
@@ -10027,12 +10027,12 @@ var Training = function Training() {
|
|
|
10027
10027
|
onBlur: handleBlur("adminTraining")
|
|
10028
10028
|
})), React.createElement(Col, {
|
|
10029
10029
|
md: 7,
|
|
10030
|
-
className: "
|
|
10030
|
+
className: "mb-4"
|
|
10031
10031
|
}, React.createElement(Label, {
|
|
10032
10032
|
style: {
|
|
10033
10033
|
fontWeight: 700
|
|
10034
10034
|
}
|
|
10035
|
-
}, "Teacher
|
|
10035
|
+
}, "Teacher training:"), React.createElement(Input, {
|
|
10036
10036
|
name: "teacherTraining",
|
|
10037
10037
|
placeholder: "Teacher training",
|
|
10038
10038
|
value: values.teacherTraining,
|
|
@@ -29854,17 +29854,17 @@ var AdminTraining = function AdminTraining() {
|
|
|
29854
29854
|
console.log({
|
|
29855
29855
|
linkAdminTraining: linkAdminTraining
|
|
29856
29856
|
});
|
|
29857
|
-
return React.createElement(Row, null,
|
|
29857
|
+
return React.createElement(Row, null, !!linkAdminTraining && React.createElement(Col, {
|
|
29858
29858
|
md: 12,
|
|
29859
|
-
className: "mt-
|
|
29859
|
+
className: "mt-2"
|
|
29860
29860
|
}, React.createElement("iframe", {
|
|
29861
29861
|
src: linkAdminTraining,
|
|
29862
29862
|
title: "Training",
|
|
29863
29863
|
style: {
|
|
29864
29864
|
width: "100%",
|
|
29865
|
-
height: "
|
|
29865
|
+
height: "80vh"
|
|
29866
29866
|
}
|
|
29867
|
-
}))
|
|
29867
|
+
})));
|
|
29868
29868
|
};
|
|
29869
29869
|
|
|
29870
29870
|
LicenseManager.setLicenseKey(LICENSE_AGGRID);
|