Tp 39922 tranche request view details screen (#7725)

This commit is contained in:
Saurabh Chaudhary
2023-09-05 15:50:02 +05:30
committed by GitHub
parent 6da347e54b
commit 060a7eb4da
2 changed files with 9 additions and 0 deletions

View File

@@ -219,6 +219,7 @@
<activity
android:name=".dashboard.loanapplicationdetails.activities.LoanApplicationDetailActivity"
android:exported="false"
android:launchMode="singleTask"
android:screenOrientation="portrait"
android:theme="@style/BaseThemeStyle" />
<activity

View File

@@ -459,4 +459,12 @@ class LoanApplicationDetailActivity :
}
loadLoanApplicationDetals()
}
override fun onNewIntent(intent: Intent?) {
super.onNewIntent(intent)
setIntent(intent)
if (intent != null) {
loadLoanApplicationDetals()
}
}
}