agora-appbuilder-core 4.0.29-beta-13 → 4.0.29-beta-16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -97,7 +97,13 @@ function RTableBody({status, recordings}) {
|
|
|
97
97
|
</Text>
|
|
98
98
|
</View>
|
|
99
99
|
<View style={style.td}>
|
|
100
|
-
{item
|
|
100
|
+
{!item.download_url ? (
|
|
101
|
+
<View style={(style.tactions, {marginTop: 0})}>
|
|
102
|
+
<Text style={style.placeHolder}>
|
|
103
|
+
{item?.error || 'No recording found'}
|
|
104
|
+
</Text>
|
|
105
|
+
</View>
|
|
106
|
+
) : item?.download_url?.length > 0 ? (
|
|
101
107
|
item?.download_url?.map((link: string, i: number) => (
|
|
102
108
|
<View style={style.tactions} key={i}>
|
|
103
109
|
<View>
|