fix: inbox issue initial data load (#3693)

* fix: inbox issue initial data load

* chore: removed unnecessary comments
This commit is contained in:
sriram veeraghanta
2024-02-19 00:17:31 +05:30
committed by GitHub
parent ce9ed6b25e
commit 261013b794
3 changed files with 6 additions and 19 deletions

View File

@@ -31,7 +31,7 @@ export const IssueTitleInput: FC<IssueTitleInputProps> = observer((props) => {
}, [value]);
useEffect(() => {
if (debouncedValue) {
if (debouncedValue && debouncedValue !== value) {
issueOperations.update(workspaceSlug, projectId, issueId, { name: debouncedValue }, false).finally(() => {
setIsSubmitting("saved");
});