Skip to content

Commit

Permalink
ci: updating image url for web
Browse files Browse the repository at this point in the history
  • Loading branch information
aacevski committed Feb 2, 2025
1 parent 74f2e46 commit 996f941
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 3 additions & 1 deletion apps/web/src/components/kanban-board/task-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { useSortable } from "@dnd-kit/sortable";
import { CSS } from "@dnd-kit/utilities";
import { format } from "date-fns";
import { Calendar, Flag, UserIcon } from "lucide-react";
import type { CSSProperties } from "react";

interface TaskCardProps {
task: Task;
Expand All @@ -18,10 +19,11 @@ function TaskCard({ task }: TaskCardProps) {
isDragging,
} = useSortable({ id: task.id });

const style = {
const style: CSSProperties = {
transform: CSS.Transform.toString(transform),
transition,
opacity: isDragging ? 0.5 : 1,
touchAction: "none",
};

const priorityColors = {
Expand Down
4 changes: 1 addition & 3 deletions compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ services:
restart: unless-stopped

frontend:
build:
context: .
dockerfile: ./apps/web/Dockerfile
image: ghcr.io/kaneo-app/web:latest
container_name: "kaneo-web"
environment:
KANEO_API_URL: "change_me"
Expand Down

0 comments on commit 996f941

Please sign in to comment.