Implement dark mode, bug report page, and schema dump
This commit is contained in:
@@ -267,7 +267,7 @@ class Issue extends Model
|
||||
self::STATUS_ASSIGNED => 'purple',
|
||||
self::STATUS_IN_PROGRESS => 'yellow',
|
||||
self::STATUS_REVIEW => 'orange',
|
||||
self::STATUS_CLOSED => 'green',
|
||||
self::STATUS_CLOSED => 'gray',
|
||||
default => 'gray',
|
||||
};
|
||||
}
|
||||
@@ -276,9 +276,9 @@ class Issue extends Model
|
||||
{
|
||||
return match($this->status) {
|
||||
self::STATUS_NEW => 0,
|
||||
self::STATUS_ASSIGNED => 20,
|
||||
self::STATUS_ASSIGNED => 25,
|
||||
self::STATUS_IN_PROGRESS => 50,
|
||||
self::STATUS_REVIEW => 80,
|
||||
self::STATUS_REVIEW => 75,
|
||||
self::STATUS_CLOSED => 100,
|
||||
default => 0,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user