|
|
@@ -115,7 +115,8 @@ public class AddMyBucketListPresenter extends Presenter<AddMyBucketListModel, IA
|
|
|
// 베스트 버킷으로부터 전달된 값이 있는지 확인
|
|
|
String title = model.getDeliveryPackaging(String.class);
|
|
|
if (StringUtil.isFull(title)) {
|
|
|
- view.setContentsText(title);
|
|
|
+ // 베스트 버킷 줄바꿈을 공백으로 전환
|
|
|
+ view.setContentsText(StringUtil.trim(title));
|
|
|
|
|
|
model.clearDeliveryPackaging();
|
|
|
}
|