mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-06-25 06:24:07 +02:00
Make account property nullable
This commit is contained in:
parent
94eb55dfe4
commit
88b5a1965c
@ -17,7 +17,7 @@ class CreateTwoFAccountsTable extends Migration
|
|||||||
$table->increments('id');
|
$table->increments('id');
|
||||||
$table->string('service');
|
$table->string('service');
|
||||||
$table->string('uri');
|
$table->string('uri');
|
||||||
$table->string('account');
|
$table->string('account')->nullable();;
|
||||||
$table->string('icon')->nullable();
|
$table->string('icon')->nullable();
|
||||||
$table->timestamps();
|
$table->timestamps();
|
||||||
});
|
});
|
||||||
|
@ -110,7 +110,7 @@
|
|||||||
this.accounts.push({
|
this.accounts.push({
|
||||||
id : data.id,
|
id : data.id,
|
||||||
service : data.service,
|
service : data.service,
|
||||||
account : data.account,
|
account : data.account ? data.account : '-',
|
||||||
icon : data.icon
|
icon : data.icon
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user