microboard-ui-temp 0.1.77 → 0.1.78
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 +2 -2
- package/dist/spa.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -338134,7 +338134,7 @@ function createWsClient(msgHandler, setConnectionErrorTimeout, onError, getCurre
|
|
|
338134
338134
|
const pingMsg = JSON.stringify({ type: "ping" });
|
|
338135
338135
|
function keepAlivePing() {
|
|
338136
338136
|
const board = getCurrentBoard();
|
|
338137
|
-
if (isConnected() && !board?.getBoardId().includes("local")) {
|
|
338137
|
+
if (isConnected() && !board?.getBoardId().includes("local") && !board?.getBoardId().includes("welcome")) {
|
|
338138
338138
|
send(pingMsg);
|
|
338139
338139
|
if (board) {
|
|
338140
338140
|
board.presence.ping();
|
|
@@ -446326,7 +446326,7 @@ function WelcomePage() {
|
|
|
446326
446326
|
await app2.openBoard(lastBoardId);
|
|
446327
446327
|
return lastBoardId;
|
|
446328
446328
|
}
|
|
446329
|
-
return "welcome
|
|
446329
|
+
return "welcome";
|
|
446330
446330
|
};
|
|
446331
446331
|
import_react419.default.useEffect(() => {
|
|
446332
446332
|
createPublicBoard(app).then((boardId) => {
|
package/dist/spa.js
CHANGED
|
@@ -338134,7 +338134,7 @@ function createWsClient(msgHandler, setConnectionErrorTimeout, onError, getCurre
|
|
|
338134
338134
|
const pingMsg = JSON.stringify({ type: "ping" });
|
|
338135
338135
|
function keepAlivePing() {
|
|
338136
338136
|
const board = getCurrentBoard();
|
|
338137
|
-
if (isConnected() && !board?.getBoardId().includes("local")) {
|
|
338137
|
+
if (isConnected() && !board?.getBoardId().includes("local") && !board?.getBoardId().includes("welcome")) {
|
|
338138
338138
|
send(pingMsg);
|
|
338139
338139
|
if (board) {
|
|
338140
338140
|
board.presence.ping();
|
|
@@ -444535,7 +444535,7 @@ function WelcomePage() {
|
|
|
444535
444535
|
await app2.openBoard(lastBoardId);
|
|
444536
444536
|
return lastBoardId;
|
|
444537
444537
|
}
|
|
444538
|
-
return "welcome
|
|
444538
|
+
return "welcome";
|
|
444539
444539
|
};
|
|
444540
444540
|
import_react419.default.useEffect(() => {
|
|
444541
444541
|
createPublicBoard(app).then((boardId) => {
|