mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
Merge pull request #2393 from appwrite/fix-SER-409-Branch-Not-AutoSelected
Fix: branch not auto selected and resolve domain availability bug
This commit is contained in:
@@ -56,8 +56,10 @@
|
||||
$effect(() => {
|
||||
domainIsValid; /* silences lint for unused var */
|
||||
|
||||
if (domain !== newDomain) {
|
||||
domainStatus = 'pending';
|
||||
if (newDomain) {
|
||||
if (domain !== newDomain) {
|
||||
domainStatus = 'pending';
|
||||
}
|
||||
checkDomain(newDomain);
|
||||
}
|
||||
});
|
||||
|
||||
+1
-1
@@ -53,7 +53,7 @@
|
||||
let domain = data.domain;
|
||||
let domainIsValid = true;
|
||||
let framework = data?.template?.frameworks[0];
|
||||
let branch = 'main';
|
||||
let branch = '';
|
||||
let rootDir = './';
|
||||
let connectBehaviour: 'now' | 'later' = 'now';
|
||||
let repositoryBehaviour: 'new' | 'existing' = 'new';
|
||||
|
||||
Reference in New Issue
Block a user