Skip to content

Commit 9018429

Browse files
vhcsilvamoshmageickas
authored
update dev with master (#512)
* Fix email templates (#496) * use handle if exists * adjust template layout * add missing prop * also exclude user who commented, because he dont need to receive notification * fix cancelable time nan (#509) * add new tags (#511) --------- Co-authored-by: moshmage <moshmage@gmail.com> Co-authored-by: Henrique <henrique@layerx.xyz>
1 parent b8791fe commit 9018429

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

components/bounty/bounty-hero/bounty-settings/controller.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default function BountySettings({
3131

3232
const isGovernor = currentUser?.isGovernor;
3333
const isDraftFunding = currentBounty?.isDraft || !currentBounty?.isFunded
34-
const cancelableTime = currentBounty?.network?.cancelableTime;
34+
const cancelableTime = +currentBounty?.network?.cancelableTime;
3535
const isCancelable = +new Date() >= +new Date(+currentBounty.createdAt + cancelableTime);
3636
const objViewProps = {
3737
onEditIssue,

helpers/constants.ts

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,36 @@ export const STATIC_URL_PATHS = [
7878
"tasks",
7979
];
8080
export const BOUNTY_TAGS = [
81+
{
82+
type: "AI",
83+
tags: [
84+
"AI Agents",
85+
"LLMs (Large Language Models)",
86+
"Machine Learning Models",
87+
"NLP (Natural Language Processing)",
88+
"Computer Vision",
89+
"Predictive Analytics",
90+
"Data Labeling",
91+
"Model Training",
92+
"Model Optimization",
93+
"Synthetic Data Generation",
94+
"Speech Recognition",
95+
"Image Processing",
96+
"Reinforcement Learning",
97+
"Recommendation Systems",
98+
"Chatbots & Conversational AI",
99+
"Model Fine-tuning",
100+
"Data Preprocessing",
101+
"Anomaly Detection",
102+
"Edge AI",
103+
"AI Infrastructure Setup",
104+
"Model Deployment",
105+
"Federated Learning",
106+
"Explainable AI",
107+
"Text-to-Image Generation",
108+
"Automation & Workflow Orchestration",
109+
],
110+
},
81111
{
82112
type: "Technology",
83113
tags: [

0 commit comments

Comments
 (0)