Skip to content

Commit b09b684

Browse files
committed
FIX: 세부 항목 수정
- NameField TextStyle 수정 - 루틴 수정 화면에서 기존 루틴의 시작일/종료일을 반영하지 못하던 문제 수정
1 parent a0af44e commit b09b684

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

presentation/src/main/java/com/threegap/bitnagil/presentation/writeroutine/WriteRoutineViewModel.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,8 @@ class WriteRoutineViewModel @AssistedInject constructor(
250250
repeatDays = repeatDays,
251251
repeatType = repeatType,
252252
startTime = intent.startTime,
253+
startDate = intent.startDate,
254+
endDate = intent.endDate,
253255
subRoutineNames = intent.subRoutines,
254256
loading = false,
255257
)

presentation/src/main/java/com/threegap/bitnagil/presentation/writeroutine/component/atom/namefield/NameField.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ fun NameField(
3535
modifier = modifier
3636
.fillMaxWidth(),
3737
singleLine = true,
38-
textStyle = BitnagilTheme.typography.body2SemiBold,
38+
textStyle = BitnagilTheme.typography.title3SemiBold,
3939
decorationBox = { innerTextField ->
4040
Column {
4141
Row(

0 commit comments

Comments
 (0)