Skip to content

Commit

Permalink
fix: make list as default view for MainDashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
omerhabib26 committed Jun 3, 2024
1 parent 12d5f4d commit ec790f7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import com.google.gson.annotations.SerializedName

data class DashboardConfig(
@SerializedName("TYPE")
private val viewType: String = DashboardType.GALLERY.name,
private val viewType: String = DashboardType.LIST.name,
) {
fun getType(): DashboardType {
return DashboardType.valueOf(viewType.uppercase())
Expand Down
2 changes: 1 addition & 1 deletion default_config/dev/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ PROGRAM:
PROGRAM_DETAIL_URL_TEMPLATE: ''

DASHBOARD:
TYPE: 'gallery'
TYPE: 'list'

FIREBASE:
ENABLED: false
Expand Down
2 changes: 1 addition & 1 deletion default_config/prod/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ PROGRAM:
PROGRAM_DETAIL_URL_TEMPLATE: ''

DASHBOARD:
TYPE: 'gallery'
TYPE: 'list'

FIREBASE:
ENABLED: false
Expand Down
2 changes: 1 addition & 1 deletion default_config/stage/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ PROGRAM:
PROGRAM_DETAIL_URL_TEMPLATE: ''

DASHBOARD:
TYPE: 'gallery'
TYPE: 'list'

FIREBASE:
ENABLED: false
Expand Down

0 comments on commit ec790f7

Please sign in to comment.