mirror of
https://github.com/suitenumerique/meet.git
synced 2026-08-31 12:47:58 +00:00
🐛(frontend) disable personal custom background while deleting
Prevent users selecting a personal custom background while deleting one.
This commit is contained in:
@@ -14,6 +14,10 @@ and this project adheres to
|
|||||||
- ♿️(frontend) fix more tools heading hierarchy #1181
|
- ♿️(frontend) fix more tools heading hierarchy #1181
|
||||||
- ♿️(fronted) improve button descriptions for More tools actions #1184
|
- ♿️(fronted) improve button descriptions for More tools actions #1184
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- 🐛(frontend) disable personal custom background while deleting
|
||||||
|
|
||||||
## [1.11.0] - 2026-03-19
|
## [1.11.0] - 2026-03-19
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
@@ -739,7 +739,10 @@ export const EffectsConfiguration = ({
|
|||||||
aria-label={
|
aria-label={
|
||||||
uploadNotPossibleSnap.imageBackgroundConfig.label
|
uploadNotPossibleSnap.imageBackgroundConfig.label
|
||||||
}
|
}
|
||||||
isDisabled={processorOptions.isDisabled}
|
isDisabled={
|
||||||
|
processorOptions.isDisabled ||
|
||||||
|
createFileMutation.isPending
|
||||||
|
}
|
||||||
onChange={() => {
|
onChange={() => {
|
||||||
toggleEffect(
|
toggleEffect(
|
||||||
uploadNotPossibleSnap.imageBackgroundConfig!
|
uploadNotPossibleSnap.imageBackgroundConfig!
|
||||||
|
|||||||
Reference in New Issue
Block a user