Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -751,12 +751,12 @@ function directive($window, $translate, toastr, AppUtil, EventManager, Permissio
}
namespace.isTextEditing = !namespace.isTextEditing;
if (namespace.isTextEditing) {//切换为编辑状态
namespace.commited = false;
namespace.committed = false;
namespace.backupText = namespace.text;
namespace.editText = parseModel2Text(namespace);

} else {
if (!namespace.commited) {//取消编辑,则复原
if (!namespace.committed) {//取消编辑,则复原
namespace.text = namespace.backupText;
}
}
Expand Down Expand Up @@ -825,7 +825,7 @@ function directive($window, $translate, toastr, AppUtil, EventManager, Permissio
return false;
}
);
namespace.commited = true;
namespace.committed = true;
}

function syntaxCheck(namespace) {
Expand Down
2 changes: 1 addition & 1 deletion changes/changes-1.9.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Apollo 1.9.0
* [Bump xstream from 1.4.16 to 1.4.17](https://github.com/ctripcorp/apollo/pull/3692)
* [Improve the nacos registry configuration document](https://github.com/ctripcorp/apollo/pull/3695)
* [Remove redundant invoke of trySyncFromUpstream](https://github.com/ctripcorp/apollo/pull/3699)
* [add apollo team introduction and community releated contents](https://github.com/ctripcorp/apollo/pull/3713)
* [add apollo team introduction and community related contents](https://github.com/ctripcorp/apollo/pull/3713)
* [fix oidc sql](https://github.com/ctripcorp/apollo/pull/3720)
* [feat(apollo-client): add method interestedChangedKeys to ConfigChangeEvent](https://github.com/ctripcorp/apollo/pull/3666)
* [add More... link for known users](https://github.com/ctripcorp/apollo/pull/3757)
Expand Down
2 changes: 1 addition & 1 deletion docs/en/deployment/third-party-tool-rainbond.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Parameters:
| team name | User-defined workspace isolated by namespace |
| cluster name | Select which K8s cluster Apollo will be deployed to |
| application | Select the application to which Apollo will be deployed, which contains several associated components |
| version | Select the version of Apollo, the useable version is 1.9.2 |
| version | Select the version of Apollo, the usable version is 1.9.2 |

After a few minutes, the Apollo is installed and up and running.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ parameter name | parameter annotation
"releaseTitle": "", // release title
"releaseComment": "", // release Comment
"releaseTime": "", // release time eg:2020-01-01T00:00:00.000+0800
"configuration": [ { // all configurations to be released; also applys to gray release
"configuration": [ { // all configurations to be released; also applies to gray release
"firstEntity": "", // key of configuration
"secondEntity": "" // value of configuration
} ],
Expand Down
2 changes: 1 addition & 1 deletion docs/scripts/multiple-language-redirect.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ function changeLinkInTranslationsListItem(currrentPath, translationsListItem) {
function generateMultipleLanguagesNavbarPluginByListItemName(name) {
return function (hook, vm) {
const bindEventForChangeHrefInNavbar = () => {
// when user's mouse down, chanage href in navbar
// when user's mouse down, change href in navbar
document.addEventListener("mousedown", _mouseEvent => {
const currrentPath = vm.route.path;
// find navbar list item by hard code name
Expand Down