Disable popping-in/out and closing when loading
This commit is contained in:
parent
3921f8a6f9
commit
e274950324
1 changed files with 3 additions and 0 deletions
|
@ -342,6 +342,7 @@ function Compose({
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
class="light"
|
class="light"
|
||||||
|
disabled={uiState === 'loading'}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
// If there are non-ID media attachments (not yet uploaded), show confirmation dialog because they are not going to be passed to the new window
|
// If there are non-ID media attachments (not yet uploaded), show confirmation dialog because they are not going to be passed to the new window
|
||||||
const containNonIDMediaAttachments =
|
const containNonIDMediaAttachments =
|
||||||
|
@ -386,6 +387,7 @@ function Compose({
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
class="light close-button"
|
class="light close-button"
|
||||||
|
disabled={uiState === 'loading'}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
if (confirmClose()) {
|
if (confirmClose()) {
|
||||||
onClose();
|
onClose();
|
||||||
|
@ -400,6 +402,7 @@ function Compose({
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
class="light"
|
class="light"
|
||||||
|
disabled={uiState === 'loading'}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
// If there are non-ID media attachments (not yet uploaded), show confirmation dialog because they are not going to be passed to the new window
|
// If there are non-ID media attachments (not yet uploaded), show confirmation dialog because they are not going to be passed to the new window
|
||||||
const containNonIDMediaAttachments =
|
const containNonIDMediaAttachments =
|
||||||
|
|
Loading…
Add table
Reference in a new issue