mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-20 12:21:13 -05:00
Merge pull request #481 from monotykamary/fix/noop-on-no-renames
fix: avoid deleting configs if the currentApiConfigName is the same
This commit is contained in:
@@ -58,7 +58,9 @@ const ApiConfigManager = ({
|
|||||||
if (editState === "new") {
|
if (editState === "new") {
|
||||||
onUpsertConfig(trimmedValue)
|
onUpsertConfig(trimmedValue)
|
||||||
} else if (editState === "rename" && currentApiConfigName) {
|
} else if (editState === "rename" && currentApiConfigName) {
|
||||||
onRenameConfig(currentApiConfigName, trimmedValue)
|
if (currentApiConfigName !== trimmedValue) {
|
||||||
|
onRenameConfig(currentApiConfigName, trimmedValue)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
setEditState(null)
|
setEditState(null)
|
||||||
|
|||||||
Reference in New Issue
Block a user