Grey out untracked children

This commit is contained in:
Joscha 2023-08-06 00:52:30 +02:00
parent b83d908d4b
commit d031eee14e
6 changed files with 57 additions and 31 deletions

View file

@ -0,0 +1,26 @@
{
"db_name": "SQLite",
"query": "\nSELECT child, tracked FROM commit_links\nJOIN commits ON hash = child\nWHERE parent = ?\n ",
"describe": {
"columns": [
{
"name": "child",
"ordinal": 0,
"type_info": "Text"
},
{
"name": "tracked",
"ordinal": 1,
"type_info": "Int64"
}
],
"parameters": {
"Right": 1
},
"nullable": [
false,
false
]
},
"hash": "2846970f979d84f4ba4ba2cd659fc37347ea280ebdf584bc535f135f63610a66"
}

View file

@ -1,20 +0,0 @@
{
"db_name": "SQLite",
"query": "SELECT child FROM commit_links WHERE parent = ?",
"describe": {
"columns": [
{
"name": "child",
"ordinal": 0,
"type_info": "Text"
}
],
"parameters": {
"Right": 1
},
"nullable": [
false
]
},
"hash": "c8172df79e5000f77a957a648fc12898959bfba8d12f31428b6e582ce2106719"
}