ru.coon 2.7.65 → 2.7.66
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
# Version 2.7.66, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/61028d8dc3e2af4282c533b5fd1368dce548e624)
|
|
2
|
+
* remove getCircularReplacer ([9fea84], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/9fea8459fda6fd3fcaa5889828cf4cd0b6f509a7))
|
|
3
|
+
* HT-9879 fix: Исправление OpenURLButtonPlugin в части проверки наличия в url знака вопроса ([56a5db], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/56a5db0b7084db2439e67f3c1eb9b6c0dab8539b))
|
|
4
|
+
* update: CHANGELOG.md ([107df2], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/107df2d447bec0a2698a306cbb1ac3b5093bed74))
|
|
5
|
+
|
|
1
6
|
# Version 2.7.65, [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/575aaa8ea4982726ce21f98300e95aa55ecbb906)
|
|
2
7
|
* update: CHANGELOG.md ([72d780], [link](http://gitlab-dbr.sigma-it.local/dbr/ru.coon/-/commit/72d7808927b07eb6ce33080c2b2e808b9b9a4a55))
|
|
3
8
|
|
package/package.json
CHANGED
|
@@ -28,7 +28,7 @@ Ext.define('Coon.report.plugin.grid.OpenURLButtonPlugin', {
|
|
|
28
28
|
if (!Ext.isEmpty(this.dynamicContextField) && !Ext.isEmpty(context.record)) {
|
|
29
29
|
url += context.record.get(this.dynamicContextField);
|
|
30
30
|
}
|
|
31
|
-
let paramsURL =
|
|
31
|
+
let paramsURL = Ext.isString(url) && url.includes('?') ? '': '?';
|
|
32
32
|
for (const paramName in params) {
|
|
33
33
|
if (params.hasOwnProperty(paramName)) {
|
|
34
34
|
if (!Ext.isEmpty(params)) {
|
package/src/version.js
CHANGED