Text fixes
This commit is contained in:
parent
d8b9872504
commit
a0daa3ae36
5 changed files with 7 additions and 7 deletions
|
|
@ -92,7 +92,7 @@ function SpotPlayerHeader({
|
||||||
} else if (key === '2') {
|
} else if (key === '2') {
|
||||||
spotStore.deleteSpot([spotStore.currentSpot!.spotId]).then(() => {
|
spotStore.deleteSpot([spotStore.currentSpot!.spotId]).then(() => {
|
||||||
history.push(spotsList());
|
history.push(spotsList());
|
||||||
message.success('Spot deleted successfully');
|
message.success('Spot successfully deleted');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -188,7 +188,7 @@ function SpotVideoContainer({
|
||||||
{isProcessing ? (
|
{isProcessing ? (
|
||||||
<Alert
|
<Alert
|
||||||
className='trimIsProcessing rounded-lg shadow-sm border-indigo-500 bg-indigo-50'
|
className='trimIsProcessing rounded-lg shadow-sm border-indigo-500 bg-indigo-50'
|
||||||
message="You’re viewing the entire recording. Trimmed Spot will be available here shortly."
|
message="You’re viewing the entire recording. The trimmed Spot will be available here shortly."
|
||||||
showIcon
|
showIcon
|
||||||
type="info"
|
type="info"
|
||||||
icon={<InfoCircleOutlined style={{ color: '#394dfe' }} />}
|
icon={<InfoCircleOutlined style={{ color: '#394dfe' }} />}
|
||||||
|
|
@ -196,7 +196,7 @@ function SpotVideoContainer({
|
||||||
) : prevIsProcessing ? (
|
) : prevIsProcessing ? (
|
||||||
<Alert
|
<Alert
|
||||||
className='trimIsReady rounded-lg shadow-sm border-0'
|
className='trimIsReady rounded-lg shadow-sm border-0'
|
||||||
message="Your trimmed Spot is ready!"
|
message="Your trimmed Spot is available!"
|
||||||
showIcon
|
showIcon
|
||||||
type="success"
|
type="success"
|
||||||
action={
|
action={
|
||||||
|
|
|
||||||
|
|
@ -72,7 +72,7 @@ export const categories: Category[] = [
|
||||||
title: '',
|
title: '',
|
||||||
key: 'spot',
|
key: 'spot',
|
||||||
items: [
|
items: [
|
||||||
{ label: 'Spot', key: MENU.SPOTS, icon: 'orspotOutline' },
|
{ label: 'Spots', key: MENU.SPOTS, icon: 'orspotOutline' },
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -844,7 +844,7 @@ export default defineBackground(() => {
|
||||||
if (!resp || !resp.id) {
|
if (!resp || !resp.id) {
|
||||||
return sendToActiveTab({
|
return sendToActiveTab({
|
||||||
type: messages.content.to.notification,
|
type: messages.content.to.notification,
|
||||||
message: "Couldn't save Spot",
|
message: "Couldn't create Spot",
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
const { id, mobURL, videoURL } = resp;
|
const { id, mobURL, videoURL } = resp;
|
||||||
|
|
|
||||||
|
|
@ -445,7 +445,7 @@ function SavingControls({
|
||||||
<div class="flex flex-col ">
|
<div class="flex flex-col ">
|
||||||
<div>
|
<div>
|
||||||
<div class="flex justify-between items-center">
|
<div class="flex justify-between items-center">
|
||||||
<h4 class="text-lg font-medium mb-4">Save Spot</h4>
|
<h4 class="text-lg font-medium mb-4">New Spot</h4>
|
||||||
<form method="dialog">
|
<form method="dialog">
|
||||||
<button class="btn btn-sm btn-circle btn-ghost absolute right-3 top-3.5">
|
<button class="btn btn-sm btn-circle btn-ghost absolute right-3 top-3.5">
|
||||||
✕
|
✕
|
||||||
|
|
@ -490,7 +490,7 @@ function SavingControls({
|
||||||
: "btn-disabled btn btn-sm text-white text-base"
|
: "btn-disabled btn btn-sm text-white text-base"
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
Save Spot
|
Create
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue