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