LearnNewsExamplesServices
Frontmatter
id6108
titlecomponent.Base: afterSetIsLoading() => simplify the initial check
stateClosed
labels
enhancement
assigneestobiu
createdAtNov 14, 2024, 5:32 PM
updatedAtNov 14, 2024, 5:34 PM
githubUrlhttps://github.com/neomjs/neo/issues/6108
authortobiu
commentsCount0
parentIssuenull
subIssues[]
subIssuesCompleted0
subIssuesTotal0
blockedBy[]
blocking[]
closedAtNov 14, 2024, 5:34 PM

component.Base: afterSetIsLoading() => simplify the initial check

Closed v8.1.0 enhancement
tobiu
tobiu commented on Nov 14, 2024, 5:32 PM

boolean algebra:

if (!(value === false && oldValue === undefined)) {

=>

if (value || oldValue !== undefined) {
tobiu added the enhancement label on Nov 14, 2024, 5:32 PM
tobiu assigned to @tobiu on Nov 14, 2024, 5:32 PM
tobiu referenced in commit 3ff104f - "component.Base: afterSetIsLoading() => simplify the initial check #6108" on Nov 14, 2024, 5:34 PM
tobiu closed this issue on Nov 14, 2024, 5:34 PM