-
Notifications
You must be signed in to change notification settings - Fork 122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Perbaikan Error Lacak Komplain #60
Conversation
@dirgareborn terima kasih. Mohon buatkan issue untuk PR anda, supaya bisa diketahui apa masalah/perbaikan yg anda lakukan dari segi penggunaan/dsbnya. Issue diperlukan supaya kami dapat me-review berdasarkan issue tersebut. Terima kasih. |
terima kasih atas tanggapannya pak @eddieridwan . mengenai PR ini hanya untuk issue #46 . |
@@ -24,7 +24,7 @@ | |||
<label for="luas_wilayah" class="control-label col-md-4 col-sm-3 col-xs-12">Luas Wilayah (km<sup>2</sup>)<span class="required">*</span></label> | |||
|
|||
<div class="col-md-6 col-sm-6 col-xs-12"> | |||
{!! Form::number('luas_wilayah', null, ['class' => 'form-control', 'id'=>'luas_wilayah', 'required' => true, 'placeholder'=>'Luas Wilayah Desa']) !!} | |||
{!! Form::number('luas_wilayah', null, ['class' => 'form-control', 'id'=>'luas_wilayah', 'required' => true, 'placeholder'=>'Luas Wilayah Desa','step' => '0.1']) !!} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Apakah ini untuk #59?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ya betul pak. maaf untuk commit pertama belum sempat buatkan issuenya. commit ke 3 yg perbaikan issue #46
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Untuk setiap PR seharusnya anda buat branch khusus untuk PR tsb (yaitu tidak menggunakan master
). Kemudian yg dicommit ke PR/branch tersebut HANYA perubahan untuk PR itu saja. Sehingga tidak mencampur commit. Perubahan terkait dengan issue yg lain dicommit ke branch yg lain, sehingga masing2 PR/branch berdiri sendiri.
Dengan cara anda sekarang, semua commit anda masuk ke branch master
sehingga PR ini mencampur perubahan untuk beberapa issue.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Jadi buat satu branch/PR untuk #59. Dan buat branch/PR lain untuk #46. Cara ini dilakukan supaya masing2 PR bisa direview secara terpisah. Karena belum tentu semua solusi setiap issue siap untuk digabung -- mungkin saja solusi untuk #46 siap digabung, tetapi solusi untuk #59 masih perlu disempurnakan.
@@ -23,7 +23,7 @@ | |||
<label for="luas_wilayah" class="control-label col-md-4 col-sm-3 col-xs-12">Luas Wilayah (km<sup>2</sup>)<span class="required">*</span></label> | |||
|
|||
<div class="col-md-6 col-sm-6 col-xs-12"> | |||
{!! Form::number('luas_wilayah', null, ['class' => 'form-control', 'id'=>'luas_wilayah', 'required' => true, 'placeholder'=>'Luas Wilayah Desa']) !!} | |||
{!! Form::number('luas_wilayah', null, ['class' => 'form-control', 'id'=>'luas_wilayah', 'required' => true, 'placeholder'=>'Luas Wilayah Desa','step' => '0.1']) !!} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Apakah ini untuk #59?
Perbaikan Error Show Tracking Komplain untuk issue #67 |
if(substr($getWilayah->kode,0,2) == 91 or substr($getWilayah->kode,0,2) == 92){ | ||
$sebutan_wilayah = 'Kecamatan'; | ||
}else{ | ||
$sebutan_wilayah = 'Distrik'; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dirgareborn , sepertinya anda belum menggunakan $sebutan_wilayah
ini untuk mengubah tampilan, sebagaimana diminta untuk issue #46 . Sebagai contoh di app/Http/Controllers/Dashboard/DashboardProfilController.php
, profil kecamatan masih menampilkan 'Kecamatan' yg disedikan sebagai string literal. Untuk issue #46, sepertinya semua string literal Kecamatan
perlu diganti dengan $sebutan_wilayah
supaya bisa menampilkan Kecamatan
atau Distrik
sesuai dengan kode wilayah.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@eddieridwan ia betul pak belum sempat ganti secara keseluruhan :D
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mohon lihat komentar
@dirgareborn terima kasih. Sdh digabung ke
|
@dirgareborn PR anda berikutnya ditunggu. Mohon batasi setiap PR hanya untuk satu issue, menggunakan branch terpisah per PR. Terima kasih. |
@dirgareborn, Sepertinya PR ini untuk issue berikut:
Betul? Mohon konfirmasi. Mohon selalu jelaskan issue yg dikerjakan pada setiap PR.
Juga usahakan setiap PR hanya mengerjakan satu issue saja, kecuali kalau ada issue yg erat sekali keterkaitannya.