Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/topic-commenter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,8 @@ jobs:
for (const file of files) {
if (file.filename.startsWith('topics/')) {
const parts = file.filename.split('/');
const fileName = parts[parts.length - 1];
const topic = fileName.split('.')[0]; // Remove any file extension
topics.push(topic);
const topicName = parts[parts.length - 2];
topics.push(topicName);
}
}

Expand Down
2 changes: 1 addition & 1 deletion topics/4d-component/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ related: 4d
url: https://www.4d.com/
wikipedia_url: https://en.wikipedia.org/wiki/4th_Dimension_(software)
---
4D components are sets of 4D methods, classes, and forms that add new functionalities to 4D applications. They can be installed in different 4D applications to extend their capabilities and allow developers to build more powerful and feature-rich applications. 4D components are an essential part of the 4D software development ecosystem, providing developers with the tools and resources they need to create high-quality, efficient, and reliable 4D applications. Whether you are a seasoned 4D developer or just getting started, 4D components can help you build better applications and bring your ideas to life.
4D components are sets of 4D methods, classes, and forms that add new functionalities to 4D applications. They can be installed in different 4D applications to extend their capabilities and allow developers to build more powerful and feature-rich applications. 4D components are an essential part of the 4D software development ecosystem, providing developers with the tools and resources they need to create high-quality, efficient, and reliable 4D applications. Whether you are a seasoned 4D developer or just getting started, 4D components can help you build better applications and bring your ideas to life.
Loading