react-dialogger 1.1.23 → 1.1.24
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/components/DialogBase.js +3 -3
- package/package.json +1 -1
package/components/DialogBase.js
CHANGED
|
@@ -949,10 +949,10 @@ var DialogBase = /** @class */ (function (_super) {
|
|
|
949
949
|
this._dom.classList.add('appinsource-dialog-root');
|
|
950
950
|
// Find root element
|
|
951
951
|
var rootElement = document.getElementById('root');
|
|
952
|
-
|
|
952
|
+
// const AppElement = rootElement.firstElementChild;
|
|
953
953
|
if (rootElement) {
|
|
954
|
-
|
|
955
|
-
AppElement.prepend(this._dom);
|
|
954
|
+
rootElement.appendChild(this._dom);
|
|
955
|
+
// AppElement.prepend(this._dom);
|
|
956
956
|
}
|
|
957
957
|
else {
|
|
958
958
|
document.body.appendChild(this._dom);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-dialogger",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.24",
|
|
4
4
|
"description": "This package is a continuation of the react-araci package. Due to an error, react-araci was removed, and it has been decided to continue under the new package name react-dialogger",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "Sueleyman Topaloglu",
|