-
Notifications
You must be signed in to change notification settings - Fork 987
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
Bug reporting and logs sharing improvements #12773
Conversation
Jenkins BuildsClick to see older builds (48)
|
2d514e0
to
9dc200f
Compare
4496366
to
18ea3f6
Compare
ISSUE 1: fields are overlapped with keyboard on AndroidISSUE 2: If I closed error reporting form one time, can't open it again on shaking until app reopening (Android)ISSUE 3: On
|
bc8023e
to
332183d
Compare
@churik 2-4 are fixed 1 is also fixed by using modal instead of bottom sheet, it just works there |
332183d
to
dd2689b
Compare
awesome work @rasom! |
dd2689b
to
d0f14e9
Compare
@churik fixed |
@rasom FILE.2021-11-10.11.43.58.mp4Please, mind my commit when squashing. thanks! |
de51124
to
7a09aa5
Compare
@rasom FILE.2021-11-10.15.02.36.mp4 |
91a7e08
to
6175850
Compare
@churik done |
6175850
to
7359c52
Compare
(defn bug-report [] | ||
(let [{:keys [description steps]} @(re-frame/subscribe [:bug-report/details])] | ||
[react-native/view {:style {:flex 1}} | ||
[topbar/topbar |
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.
better to use native topbar in this case
[topbar/topbar | ||
{:title (i18n/label :t/bug-report) | ||
:modal? true}] | ||
[react-native/view {:style {:flex 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.
this is something new, usually we use react/view
or rn/view
@@ -1194,7 +1194,7 @@ | |||
"remove-token": "Alisin ang token", | |||
"removed": "alisin", | |||
"repeat-pin": "Ulitin ang bagong 6-digit na passcode", | |||
"report-bug-email-template": "1. Paglalarawan ng Isyu\n(Ilarawan ang tampok na nais mo, o maikli ang buod ng bug at kung ano ang iyong ginawa, kung ano ang inaasahan mong mangyari, at kung ano ang tunay na mangyayari. Mga seksyon sa ibaba)\n\n\n2. Mga hakbang upang makalikha\n(Ilarawan kung paano namin maaaring kopyahin ang sunud-sunod na hakbang.)\n-Buksan ang Status\n-...\n-Step 3, atbp.\n\n3. Inaasahang pag-uugali\n(Ilarawan kung ano ang inaasahan mong mangyari.)\n\n\n4. Aktwal na pag-uugali\n(Ilarawan kung ano talaga ang nangyari.)\n\n\n5. Ikabit ang mga screenshot na maaaring mag-demo sa problema, kung maaari sana", | |||
"report-bug-email-template": "1. Paglalarawan ng Isyu\{{description}}\n\n\n2. Mga hakbang upang makalikha\n {{steps}}\n\n\n3. Ikabit ang mga screenshot na maaaring mag-demo sa problema, kung maaari sana", |
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.
n
is missed
Changes:
fix #12042
status: wip