-
-
Notifications
You must be signed in to change notification settings - Fork 209
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'bugfix/fix-upgrade-net9' into develop
- Loading branch information
Showing
12 changed files
with
82 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+5 Bytes
(100%)
src/applications/mixcore/wwwroot/default-mixcontent/default.zip
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...core/wwwroot/mix-app/views/app-portal/pages/theme/components/theme-export-pages/view.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<section><div class="row"><div class="col-md-6"><div class="form-check form-switch"><input type="checkbox" class="form-check-input" ng-model="$ctrl.selectAllContent" ng-change="$ctrl.selectAll($ctrl.data.items)" id="switchSelectAllPageContent"> <label class="custom-control-label" for="switchSelectAllPageContent">Select all pages</label></div></div><div class="col-md-6" ng-if="$ctrl.selectAllContent"><div class="form-check form-switch"><input type="checkbox" class="form-check-input" ng-model="$ctrl.selectAllData" ng-change="$ctrl.selectAll($ctrl.data.items)" id="switchSelectAllPageData"> <label class="custom-control-label" for="switchSelectAllPageData">With Data</label></div></div></div><hr><div class="row justify-content-md-left"><div class="col-md-4 mb-2" ng-repeat="page in $ctrl.data.items track by page.id"><div class="form-check form-switch"><input type="checkbox" class="form-check-input" ng-model="page.isActived" ng-change="$ctrl.selectContent(page, page.isActived)" id="page-{{page.id}}"> <label class="custom-control-label" for="page-{{page.id}}">{{page.displayName}}</label></div><div class="col-md-1"></div><div class="col-md-11 small" ng-show="page.isActived"><input type="checkbox" ng-model="page.isExportData" id="page-data-{{page.id}}" ng-change="$ctrl.selectData(page, page.isExportData)"> <label for="page-data-{{page.id}}">With data</label></div></div></div></section> | ||
<section><div class="row"><div class="col-md-6"><div class="form-check form-switch"><input type="checkbox" class="form-check-input" ng-model="$ctrl.selectAllContent" ng-change="$ctrl.selectAll($ctrl.data.items)" id="switchSelectAllPageContent"> <label class="custom-control-label" for="switchSelectAllPageContent">Select all pages</label></div></div><div class="col-md-6" ng-if="$ctrl.selectAllContent"><div class="form-check form-switch"><input type="checkbox" class="form-check-input" ng-model="$ctrl.selectAllData" ng-change="$ctrl.selectAll($ctrl.data.items)" id="switchSelectAllPageData"> <label class="custom-control-label" for="switchSelectAllPageData">With Data</label></div></div></div><hr><div class="row justify-content-md-left"><div class="col-md-4 mb-2" ng-repeat="page in $ctrl.data.items track by page.id"><div class="form-check form-switch"><input type="checkbox" class="form-check-input" ng-model="page.isActived" ng-change="$ctrl.selectContent(page, page.isActived)" id="page-{{page.id}}"> <label class="custom-control-label" for="page-{{page.id}}">{{page.title}}</label></div><div class="col-md-1"></div><div class="col-md-11 small" ng-show="page.isActived"><input type="checkbox" ng-model="page.isExportData" id="page-data-{{page.id}}" ng-change="$ctrl.selectData(page, page.isExportData)"> <label for="page-data-{{page.id}}">With data</label></div></div></div></section> |
2 changes: 1 addition & 1 deletion
2
...core/wwwroot/mix-app/views/app-portal/pages/theme/components/theme-export-posts/view.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<section><div class="row"><div class="col-md-6"><div class="form-check form-switch"><input type="checkbox" class="form-check-input" ng-model="$ctrl.selectAllContent" ng-change="$ctrl.selectAll($ctrl.data.items)" id="switchSelectAllPostContent"> <label class="custom-control-label" for="switchSelectAllPostContent">Select all posts</label></div></div><div class="col-md-6" ng-if="$ctrl.selectAllContent"><div class="form-check form-switch"><input type="checkbox" class="form-check-input" ng-model="$ctrl.selectAllData" ng-change="$ctrl.selectAll($ctrl.data.items)" id="switchSelectAllPostData"> <label class="custom-control-label" for="switchSelectAllPostData">With Data</label></div></div></div><hr><div class="row justify-content-md-left"><div class="col-md-4 mb-2" ng-repeat="post in $ctrl.data.items track by post.id"><div class="form-check form-switch"><input type="checkbox" class="form-check-input" ng-model="post.isActived" ng-change="$ctrl.selectContent(post, post.isActived)" id="post-{{post.id}}"> <label class="custom-control-label" for="post-{{post.id}}">{{post.displayName}}</label></div><div class="col-md-1"></div><div class="col-md-11 small" ng-show="post.isActived"><input type="checkbox" ng-model="post.isExportData" id="post-data-{{post.id}}" ng-change="$ctrl.selectData(post, post.isExportData)"> <label for="post-data-{{post.id}}">With data</label></div></div></div></section> | ||
<section><div class="row"><div class="col-md-6"><div class="form-check form-switch"><input type="checkbox" class="form-check-input" ng-model="$ctrl.selectAllContent" ng-change="$ctrl.selectAll($ctrl.data.items)" id="switchSelectAllPostContent"> <label class="custom-control-label" for="switchSelectAllPostContent">Select all posts</label></div></div><div class="col-md-6" ng-if="$ctrl.selectAllContent"><div class="form-check form-switch"><input type="checkbox" class="form-check-input" ng-model="$ctrl.selectAllData" ng-change="$ctrl.selectAll($ctrl.data.items)" id="switchSelectAllPostData"> <label class="custom-control-label" for="switchSelectAllPostData">With Data</label></div></div></div><hr><div class="row justify-content-md-left"><div class="col-md-4 mb-2" ng-repeat="post in $ctrl.data.items track by post.id"><div class="form-check form-switch"><input type="checkbox" class="form-check-input" ng-model="post.isActived" ng-change="$ctrl.selectContent(post, post.isActived)" id="post-{{post.id}}"> <label class="custom-control-label" for="post-{{post.id}}">{{post.title}}</label></div><div class="col-md-1"></div><div class="col-md-11 small" ng-show="post.isActived"><input type="checkbox" ng-model="post.isExportData" id="post-data-{{post.id}}" ng-change="$ctrl.selectData(post, post.isExportData)"> <label for="post-data-{{post.id}}">With data</label></div></div></div></section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters