code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/lib/api-loader/_base-loader.js b/lib/api-loader/_base-loader.js @@ -159,7 +159,7 @@ class BaseLoader extends EventEmitter {
try {
this.module = require(path.join(dirPath, fileName));
} catch (err) {
- throw new Error(`There was an error while trying to load the file ${fileName}:\n${err.stack}`);
+ throw ne... | 7 |
diff --git a/services/ingest-file/ingestors/documents/xml.py b/services/ingest-file/ingestors/documents/xml.py @@ -63,7 +63,10 @@ class XMLIngestor(Ingestor, EncodingSupport, XMLSupport, HTMLSupport):
doc = self.parse_xml_path(file_path)
text = self.extract_html_text(doc.getroot())
entity.set('bodyText', text)
+ try:
t... | 8 |
diff --git a/src/core/connection/connection_manager.ts b/src/core/connection/connection_manager.ts @@ -232,7 +232,7 @@ export default class ConnectionManager extends EventsDispatcher {
private resetActivityCheck() {
this.stopActivityCheck();
// send ping after inactivity
- if (!this.connection.handlesActivityChecks()) ... | 9 |
diff --git a/src/traces/pie/plot.js b/src/traces/pie/plot.js @@ -410,6 +410,8 @@ function attachFxHandlers(sliceTop, gd, cd) {
x0: hoverCenterX - rInscribed * cd0.r,
x1: hoverCenterX + rInscribed * cd0.r,
y: hoverCenterY,
+ _y0: hoverCenterY - rInscribed * cd0.r,
+ _y1: hoverCenterY + rInscribed * cd0.r,
text: text.joi... | 7 |
diff --git a/src/components/general/equipment/Equipment.jsx b/src/components/general/equipment/Equipment.jsx @@ -333,6 +333,7 @@ export const Equipment = () => {
}, [itemLoader]);
useEffect(() => {
+ if (open) {
const start_url = selectObject ? selectObject.start_url : '';
if (start_url) {
const abortController = new A... | 0 |
diff --git a/test/cli/jdl.js b/test/cli/jdl.js @@ -30,7 +30,7 @@ describe('jdl command test', () => {
let jdlStub;
beforeEach(() => {
oldArgv = process.argv;
- process.argv = ['jhipster', 'jhipster', 'jdl', 'foo.jdl', '--download-only'];
+ process.argv = ['jhipster', 'jhipster', 'jdl', 'foo.jdl', '--json-only'];
jdlStu... | 4 |
diff --git a/docs/index.html b/docs/index.html <meta charset="utf-8">
<title>Bootswatch: Free themes for Bootstrap</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="stylesheet" href="./4/materia/bootstrap.css">
+ <link rel="stylesheet" href="./5/materia/bootstrap.css">
<link rel=... | 1 |
diff --git a/src/components/dashboard/ReceiveByQR.web.js b/src/components/dashboard/ReceiveByQR.web.js @@ -38,6 +38,7 @@ const ReceiveByQR = ({ screenProps }) => {
title: 'Error',
message: 'Invalid QR Code. Probably this QR code is for sending GD',
dismissText: 'Ok',
+ type: 'error',
})
} else {
const { receiveLink, re... | 0 |
diff --git a/src/resources/views/crud/columns/inc/bulk_actions_checkbox.blade.php b/src/resources/views/crud/columns/inc/bulk_actions_checkbox.blade.php if (crud.lastCheckedItem && e.shiftKey) {
let getNodeindex = elm => [...elm.parentNode.children].indexOf(elm);
let first = document.querySelector(`input.crud_bulk_acti... | 10 |
diff --git a/OpenRobertaRobot/src/main/java/de/fhg/iais/roberta/typecheck/TypecheckVisitor.java b/OpenRobertaRobot/src/main/java/de/fhg/iais/roberta/typecheck/TypecheckVisitor.java @@ -111,8 +111,10 @@ import de.fhg.iais.roberta.visitor.hardware.sensor.ISensorVisitor;
import de.fhg.iais.roberta.visitor.lang.ILanguageVi... | 7 |
diff --git a/player/js/utils/pooling/shape_pool.js b/player/js/utils/pooling/shape_pool.js @@ -31,6 +31,9 @@ var shape_pool = (function(){
point_pool.release(shapePath.v[i]);
point_pool.release(shapePath.i[i]);
point_pool.release(shapePath.o[i]);
+ shapePath.v[i] = null;
+ shapePath.i[i] = null;
+ shapePath.o[i] = null... | 12 |
diff --git a/README.md b/README.md -## Status Technikon
+## Contributing
+
+### Editing an existing page
+
+All documentation is kept as markdown files in the `docs` folder. Simply locate the file you want, change it and create a Pull Request.
+Once reviewed and merged your changes will be live.
+
+### Adding a new pag... | 7 |
diff --git a/config/app.json b/config/app.json {
"development": {
"senza_url": "http://localhost:3000/api/v2",
- "macaroon_location": "/Users/mac/Desktop/work/sphinx/sphinx-stack/lnd/alice/.lnd/data/chain/bitcoin/regtest/admin.macaroon",
- "tls_location": "/Users/mac/Desktop/work/sphinx/sphinx-stack/lnd/alice/.lnd/tls.... | 3 |
diff --git a/modules/geo-layers/src/h3-layers/h3-hexagon-layer.js b/modules/geo-layers/src/h3-layers/h3-hexagon-layer.js -import {h3ToGeoBoundary, h3GetResolution, h3ToGeo, geoToH3, h3IsPentagon} from 'h3-js';
+import {
+ h3ToGeoBoundary,
+ h3GetResolution,
+ h3ToGeo,
+ geoToH3,
+ h3IsPentagon,
+ h3Distance,
+ edgeLeng... | 7 |
diff --git a/server/src/fetchers/thread-permission-fetchers.js b/server/src/fetchers/thread-permission-fetchers.js @@ -95,7 +95,7 @@ async function checkThreads(
const [[result], disabledThreadIDs] = await Promise.all([
dbQuery(query),
- checkThreadDisabled(viewer, permissionsToCheck, threadIDs),
+ checkThreadsFrozen(v... | 10 |
diff --git a/new-client/src/components/MapClickViewer/views/FeaturesListView.js b/new-client/src/components/MapClickViewer/views/FeaturesListView.js @@ -33,36 +33,6 @@ const FeaturesListView = (props) => {
setSelectedFeature(preselectedFeature || null);
}, [featureCollection]);
- /**
- * @summary Try to prepare a nice ... | 5 |
diff --git a/Apps/Sandcastle/gallery/3D Tiles Next CDB Yemen.html b/Apps/Sandcastle/gallery/3D Tiles Next CDB Yemen.html ["${name} === 'DRYGROUND'", "color('#9B7653')"],
["${name} === 'WETGROUND'", "color('#5a4332')"],
["${name} === 'SAND'", "color('gold')"],
- ["true", "color('white')"],
+ ["true", "color('#9B7653')"]... | 12 |
diff --git a/articles/policies/penetration-testing.md b/articles/policies/penetration-testing.md ---
description: This page details Auth0's Penetration Testing Policy.
---
-
# Penetration Testing Policy
-While conducting a security test of your own application it is not permitted to directly test Auth0 infrastructure (... | 0 |
diff --git a/token-metadata/0x8F57e8e38e61975a0433Fa792542F453d8eD4d7D/metadata.json b/token-metadata/0x8F57e8e38e61975a0433Fa792542F453d8eD4d7D/metadata.json "symbol": "YFIE",
"address": "0x8F57e8e38e61975a0433Fa792542F453d8eD4d7D",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/README.md b/README.md @@ -67,14 +67,14 @@ Say thanks!
<tr>
<td>Google<br><img src="https://edent.github.io/SuperTinyIcons/images/svg/google.svg" width="125" title="Google" /><br>484 Bytes</td>
<td>Google Play<br><img src="https://edent.github.io/SuperTinyIcons/images/svg/google_play.svg" width="125" title=... | 1 |
diff --git a/test/integration/offline.js b/test/integration/offline.js @@ -666,4 +666,43 @@ describe('Offline', () => {
});
});
+ context('disable cookie validation', () => {
+ it('should return bad reqeust by default if invalid cookies are passed by the request', done => {
+ const offline = new OfflineBuilder().addFun... | 0 |
diff --git a/src/TemplateRender.js b/src/TemplateRender.js @@ -163,12 +163,8 @@ class TemplateRender {
getReadableEnginesListDifferingFromFileExtension() {
let keyFromFilename = this.extensionMap.getKey(this.engineNameOrPath);
if (this.engine instanceof CustomEngine) {
- if (this.engine.entry && keyFromFilename !== thi... | 2 |
diff --git a/docker-compose.yml b/docker-compose.yml @@ -13,7 +13,7 @@ services:
hostname: scratch-www-app
environment:
- API_HOST=http://localhost:8491
- - FALLBACK=http://scratchr2-app:8080
+ - FALLBACK=http://localhost:8080
- USE_DOCKER_WATCHOPTIONS=true
build:
context: ./
| 13 |
diff --git a/README.md b/README.md @@ -23,7 +23,7 @@ Just unpack the [latest release](https://releases.grocy.info/latest) on your PHP
Alternatively clone this repository and install Composer and Yarn dependencies manually.
-If you use nginx as your webserver, please include `try_files $uri /index.php;` in your location... | 3 |
diff --git a/tests/phpunit/integration/Core/Assets/AssetsTest.php b/tests/phpunit/integration/Core/Assets/AssetsTest.php @@ -29,8 +29,6 @@ class AssetsTest extends TestCase {
}
public function test_register() {
- global $wp_filter;
-
$actions_to_test = array(
'admin_enqueue_scripts',
'wp_enqueue_scripts',
| 2 |
diff --git a/chat/longChatPane.js b/chat/longChatPane.js @@ -75,11 +75,11 @@ module.exports = { // noun_704.svg Canoe noun_346319.svg = 1 Chat noun_168933
ui:part :colorizeByAuthor, :expandImagesInline, :newestFirst, :inlineImageHeightEms;
ui:parts ( :colorizeByAuthor :expandImagesInline :newestFirst :inlineImageHeight... | 12 |
diff --git a/src/commands/Ondemand/Damage.js b/src/commands/Ondemand/Damage.js @@ -28,19 +28,19 @@ class Damage extends Command {
url: 'http://i.imgur.com/EOzr440.png',
},
fields: [
- { name: 'Blast', value: '<:blast:321463957292318720>', inline: true },
- { name: 'Cold', value: '<:cold:321463957019951105>', inline: tr... | 3 |
diff --git a/package.json b/package.json {
"name": "prettier-atom",
"main": "./dist/main.js",
- "version": "0.57.0",
+ "version": "0.57.1",
"description": "Atom plugin for formatting JavaScript using prettier with (optional) prettier-eslint integration",
"keywords": [
"atom",
| 6 |
diff --git a/content/docs/userspace/dist/guide.md b/content/docs/userspace/dist/guide.md @@ -191,23 +191,10 @@ We've grabbed an image to use in our "Hello world!" page. The next thing we need
In the editor, paste in the following HTML and save it:
```html
-<!DOCTYPE html>
-<html>
- <head>
- <style>
- div {
- text-align... | 14 |
diff --git a/admin-base/materialize/custom/_vue-form-generator.scss b/admin-base/materialize/custom/_vue-form-generator.scss &.field-collection {
.preview-list {
> li.preview-item {
+ clear: both;
.singlefield {
+ float: left;
.form-group {
padding: 0;
}
}
}
.multifield {
+ float: left;
.form-group {
padding: 0;
}
| 7 |
diff --git a/util/listeners.js b/util/listeners.js @@ -17,14 +17,14 @@ const EVENT_HANDLERS = {
}
let cmdsExtension
if (fs.existsSync('./settings/commands.js')) {
- try { cmdsExtension = require('../settings/commands.js') } catch (e) { console.log(`Error: Unable to load commands extension file. Reason:\n`, e) }
+ try {... | 14 |
diff --git a/contribs/gmf/src/search/component.js b/contribs/gmf/src/search/component.js @@ -383,6 +383,11 @@ export class SearchController {
? [this.map.getView().getProjection()]
: this.ngeoAutoProjection_.getProjectionList(this.options.coordinatesProjections);
+ // Merge typeahead options from the controller options... | 12 |
diff --git a/src/components/SectionHeader.js b/src/components/SectionHeader.js @@ -66,7 +66,8 @@ const styles = StyleSheet.create({
alignItems: "center",
justifyContent: "center",
borderRadius: 10,
- marginLeft: 6
+ marginLeft: 6,
+ paddingTop: 2
},
badgeText: { color: lightNavyBlueColor }
});
| 0 |
diff --git a/test/testnet/index.js b/test/testnet/index.js @@ -146,12 +146,12 @@ program
});
console.log(green(`Success. ${etherscanLinkPrefix}/tx/${txn0Hash}`));
- // Note: we are using numbers in WEI not ether (i.e. not with 18 decimals),
+ // Note: we are using numbers in WEI to 1e-13 not ether (i.e. not with 18 dec... | 3 |
diff --git a/src/components/BrowserHistory/BrowserHistory.styles.js b/src/components/BrowserHistory/BrowserHistory.styles.js @@ -7,7 +7,7 @@ import type { ComponentType } from 'react';
export const Article: ComponentType<*> =
styled
.article
- .attrs(({ className, ...props }) => ({
+ .attrs(({ className="", ...props })... | 12 |
diff --git a/services/importer/spec/unit/unp_spec.rb b/services/importer/spec/unit/unp_spec.rb @@ -4,7 +4,7 @@ require_relative '../../lib/importer/unp'
include CartoDB::Importer2
module FileUtils
- class Entry_ # rubocop:disable ClassAndModuleCamelCase
+ class Entry_ # rubocop:disable ClassAndModuleCamelCase, Departme... | 8 |
diff --git a/app/controllers/UserController.scala b/app/controllers/UserController.scala package controllers
import java.sql.Timestamp
+import java.time.Instant
import javax.inject.Inject
-
import com.mohiva.play.silhouette.api.{Environment, LogoutEvent, Silhouette}
import com.mohiva.play.silhouette.impl.authenticators... | 1 |
diff --git a/src/views/newDirectMessage/style.js b/src/views/newDirectMessage/style.js @@ -5,11 +5,12 @@ import { hexa } from 'src/components/globals';
import { MEDIA_BREAK, TITLEBAR_HEIGHT } from 'src/components/layout';
export const Container = styled.div`
- grid-area: main;
+ position: fixed;
+ width: 100%;
+ height... | 1 |
diff --git a/www/src/css/components/_search.scss b/www/src/css/components/_search.scss padding: 6px 12px;
color: #c2ced9;
font-size: 16px;
+ pointer-events: none;
& * {
font-family: $code;
&::placeholder {
color: rgba($white, 0.8);
}
-
}
&::placeholder {
color: #c2ced9;
| 0 |
diff --git a/utils/pre-swap-checker/contracts/Imports.sol b/utils/pre-swap-checker/contracts/Imports.sol @@ -4,7 +4,6 @@ import "@airswap/tokens/contracts/FungibleToken.sol";
import "@airswap/tokens/contracts/NonFungibleToken.sol";
import "@airswap/tokens/contracts/WETH9.sol";
import "@airswap/swap/contracts/Swap.sol";... | 2 |
diff --git a/character-controller.js b/character-controller.js @@ -638,10 +638,10 @@ class StatePlayer extends PlayerBase {
}
// serializers
getPosition() {
- return localArray3.fromArray(this.playerMap.get('transform'));
+ return this.playerMap?.get('position') ?? [0, 0, 0];
}
getQuaternion() {
- return localArray3.fr... | 1 |
diff --git a/src/PanelTraits/FakeFields.php b/src/PanelTraits/FakeFields.php @@ -24,7 +24,7 @@ trait FakeFields
// go through each defined field
foreach ($fields as $k => $field) {
// if it's a fake field and the field is included in the request
- if (isset($fields[$k]['fake']) && $fields[$k]['fake'] == true && isset($... | 1 |
diff --git a/assets/js/components/data/index.js b/assets/js/components/data/index.js @@ -77,9 +77,6 @@ const dataAPI = {
maxRequests: 10,
init() {
- if ( global.googlesitekit.initialized ) {
- return;
- }
global.googlesitekit.initialized = true;
this.collectModuleData = this.collectModuleData.bind( this );
global.googl... | 2 |
diff --git a/src/components/DocContent.vue b/src/components/DocContent.vue @@ -355,6 +355,7 @@ export default {
height: 45px;
line-height: 45px;
margin: 0;
+ margin-left: 15px;
font-weight: normal;
box-sizing: content-box;
}
@@ -363,11 +364,12 @@ export default {
font-weight: normal;
color: rgb(150, 150, 150);
font-siz... | 7 |
diff --git a/packages/gatsby-plugin-manifest/src/gatsby-node.js b/packages/gatsby-plugin-manifest/src/gatsby-node.js @@ -8,7 +8,7 @@ sharp.simd(true)
function generateIcons(icons, srcIcon) {
return Promise.map(icons, icon => {
- const size = parseInt(icon.fluid.substring(0, icon.fluid.lastIndexOf(`x`)))
+ const size = ... | 13 |
diff --git a/packages/@uppy/provider-views/src/index.js b/packages/@uppy/provider-views/src/index.js @@ -528,6 +528,8 @@ module.exports = class ProviderView {
res.items.forEach((item) => {
if (!item.isFolder) {
files.push(item)
+ } else {
+ this.addFolder(item)
}
})
const moreFiles = res.nextPagePath || null
| 0 |
diff --git a/ci/release.js b/ci/release.js const fs = require("fs")
-const { spawn } = require("child_process")
+const path = require("path")
+const toml = require("toml")
+const { execSync } = require("child_process")
const git = require("simple-git")
const release = require("publish-release")
function updateVersion(n... | 3 |
diff --git a/token-metadata/0xF83301c5Cd1CCBB86f466A6B3c53316ED2f8465a/metadata.json b/token-metadata/0xF83301c5Cd1CCBB86f466A6B3c53316ED2f8465a/metadata.json "symbol": "CMS",
"address": "0xF83301c5Cd1CCBB86f466A6B3c53316ED2f8465a",
"decimals": 6,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
}... | 3 |
diff --git a/lib/node_modules/@stdlib/_tools/scripts/publish_packages.js b/lib/node_modules/@stdlib/_tools/scripts/publish_packages.js @@ -441,7 +441,7 @@ function publish( pkg, clbk ) {
command = [
'find '+dist+' -type f -name \'include.gypi\' -print0 ', // Find all `include.gypi` files in the destination directory an... | 8 |
diff --git a/packages/fether-react/src/Send/TxForm/TxForm.js b/packages/fether-react/src/Send/TxForm/TxForm.js @@ -17,11 +17,13 @@ import { estimateGas } from '../../utils/estimateGas';
import TokenBalance from '../../Tokens/TokensList/TokenBalance';
import withAccount from '../../utils/withAccount.js';
import withBala... | 1 |
diff --git a/struts2-jquery-mobile-showcase/pom.xml b/struts2-jquery-mobile-showcase/pom.xml <url>http://code.google.com/p/struts2-jquery/source/browse/</url>
</scm>
- <properties>
- <javassist.version>3.17.1-GA</javassist.version>
- <velocity.version>1.7</velocity.version>
- <velocity-tools.version>2.0</velocity-tools... | 2 |
diff --git a/lib/base/connection-pool.js b/lib/base/connection-pool.js @@ -157,9 +157,24 @@ class ConnectionPool extends EventEmitter {
_connect (callback) {
if (this._connected) {
+ debug('pool(%d): already connected, executing connect callback immediately', IDS.get(this))
return setImmediate(callback, null, this)
}
+... | 11 |
diff --git a/stories/module-analytics-setup.stories.js b/stories/module-analytics-setup.stories.js @@ -281,21 +281,19 @@ storiesOf( 'Analytics Module/Setup', module )
.add( 'Existing Tag w/ access, GTM property w/o access', usingGenerateGTMAnalyticsPropertyStory( { useExistingTag: true, gtmPermission: false, gaPermissi... | 1 |
diff --git a/readme.md b/readme.md @@ -65,6 +65,8 @@ Working hard on `APIs`, `tutorials` and `website`. Follow [@legomushroom](https:
Kudos to supporters on [Patreon](https://patreon.com/user?u=3219311&utm_medium=social&utm_source=twitter&utm_campaign=creatorshare):
- [Zak Frisch](https://github.com/zfrisch)
+- [Erhan ... | 3 |
diff --git a/src/components/manage/index.js b/src/components/manage/index.js @@ -17,7 +17,6 @@ import { getNetworkVersion, sendTXToContract, attachToContract, calculateGasLimi
import { getWhiteListWithCapCrowdsaleAssets, toast } from '../../utils/utils'
import { contractsInfo, getTiers, processTier, updateTierAttribute... | 2 |
diff --git a/README.md b/README.md -|<img alt="Detox" width=405 src="https://user-images.githubusercontent.com/1962469/89643713-0c018200-d8bf-11ea-8a7d-d21de37cf3ec.png"><br>Gray box end-to-end testing and automation library for mobile apps.|
-|:----:|
-|<img src="https://user-images.githubusercontent.com/1962469/89655... | 2 |
diff --git a/renderer/pages/settings.js b/renderer/pages/settings.js @@ -101,10 +101,6 @@ const Settings = () => {
label={<FormattedMessage id='Settings.Privacy.SendCrashReports' />}
optionKey='advanced.send_crash_reports'
/>
- <BooleanOption
- label={<FormattedMessage id='Settings.Sharing.IncludeNetwork' />}
- optionK... | 2 |
diff --git a/server/preprocessing/other-scripts/openaire.R b/server/preprocessing/other-scripts/openaire.R @@ -31,29 +31,6 @@ get_papers <- function(query, params, limit=NULL) {
project_id <- params$project_id
funding_stream <- params$funding_stream
- # identify search on projects
- # project <- roa_projects(acronym = ... | 2 |
diff --git a/svc/apiadmin.js b/svc/apiadmin.js @@ -187,7 +187,7 @@ invokeInterval(function updateAPIKeysInRedis(cb) {
cb();
}
});
-}, 5 * 1000); // Update every 5 min
+}, 5 * 60 * 1000); // Update every 5 min
-invokeInterval(function runStoreUsageCounts(cb){storeUsageCounts(0, cb);}, 5 * 1000); // Every 10 minutes
-inv... | 13 |
diff --git a/src/components/composer/index.js b/src/components/composer/index.js @@ -560,7 +560,7 @@ class ComposerWithData extends Component {
return (
<Container>
- <Titlebar />
+ <Titlebar provideBack title={`New conversation`} noComposer />
<Dropdowns>
<span>To:</span>
{!dataExists ? (
| 1 |
diff --git a/packages/neutrine/src/dashboard/styles/dashboard.scss b/packages/neutrine/src/dashboard/styles/dashboard.scss @@ -7,7 +7,7 @@ $neutrine-layout-dashboard-main-width: 860px;
$neutrine-layout-dashboard-header-height: 52px;
//Dashboard style
-.neutrine-layout-dashboard {
+.neutrine-dashboard {
display: block;
... | 10 |
diff --git a/userscript.user.js b/userscript.user.js @@ -28145,7 +28145,7 @@ var $$IMU_EXPORT$$;
}
var sub_units_td = document.createElement("td");
sub_units_td.style = "display:inline";
- sub_units_td.innerHTML = meta.number_unit;
+ sub_units_td.innerText = meta.number_unit;
sub_tr.appendChild(input);
sub_tr.appendChi... | 14 |
diff --git a/src/utils/logger.ts b/src/utils/logger.ts @@ -29,27 +29,34 @@ const logger = expressWinston.logger({
export default logger
interface Logging {
- Express: boolean
- Lightning: boolean
- Meme: boolean
- Tribes: boolean
- Notification: boolean
- Network: boolean
- DB: boolean
- Proxy: boolean
- Lsat: boolean
... | 3 |
diff --git a/lib/commands.js b/lib/commands.js @@ -204,7 +204,7 @@ class Commands {
// replace state
return {
id: stateDef._id,
- name: name.replace(devname, ''),
+ name: (typeof name === 'string') ? name.replace(devname, '') : name,
type: stateDef.common.type,
read: stateDef.common.read,
write: stateDef.common.write,
| 1 |
diff --git a/test/jasmine/tests/plot_api_test.js b/test/jasmine/tests/plot_api_test.js @@ -3272,6 +3272,7 @@ describe('Test plot api', function() {
['gl3d_annotations', require('@mocks/gl3d_annotations.json')],
['gl3d_set-ranges', require('@mocks/gl3d_set-ranges.json')],
['gl3d_world-cals', require('@mocks/gl3d_world-c... | 0 |
diff --git a/articles/hosted-pages/login/index.md b/articles/hosted-pages/login/index.md @@ -77,7 +77,7 @@ In order to get started using the Hosted Login Page, you'll first want to choose
You can customize the Hosted Login Page at will right from the editor. If you use Lock, you can alter its behavior and appearance wi... | 2 |
diff --git a/packages/component-library/src/utils/chartHelpers.js b/packages/component-library/src/utils/chartHelpers.js @@ -36,7 +36,7 @@ function getDefaultDomain(data, dataKey, dataLabel) {
return {
x: [
- Math.min(...xValues) < 0 ? Math.min(...xValues) : 0,
+ Math.min(...xValues) < 0 ? Math.min(...xValues) : Math.m... | 3 |
diff --git a/bids-validator/validators/events/hed.js b/bids-validator/validators/events/hed.js @@ -89,14 +89,14 @@ export default function checkHedStrings(events, headers, jsonContents, dir) {
// get the 'HED' field
const rowCells = row.trim().split('\t')
const hedStringParts = []
- if (rowCells[hedColumnIndex]) {
+ if... | 8 |
diff --git a/continuous_deployment/bs.js b/continuous_deployment/bs.js @@ -6,49 +6,49 @@ var test = require('./bs_test.js')
// Input capabilities
var iPhone = {
- 'browserName': 'iPhone',
- 'device': 'iPhone 7',
- 'realMobile': 'true',
- 'os_version': '10.3',
+ browserName: 'iPhone',
+ device: 'iPhone 7',
+ realMobile:... | 2 |
diff --git a/Awesome-Design-Plugins.md b/Awesome-Design-Plugins.md @@ -167,13 +167,13 @@ If you found some great design tool or plugin, just send a Pull Request with res
</article>
-<div class="hidden-in-page">
+<!-- <div class="hidden-in-page">
<p align="center">
<a href="http://bit.ly/35I1q9q">
<img src="https://gith... | 2 |
diff --git a/src/components/inspectors/TimerExpression.vue b/src/components/inspectors/TimerExpression.vue @@ -193,7 +193,7 @@ export default {
watch: {
value: {
handler(value) {
- return this.parseTimerConfig(value);
+ this.parseTimerConfig(value);
},
immediate: true,
},
| 2 |
diff --git a/src/DevChatter.Bot.Core/Commands/BaseCommand.cs b/src/DevChatter.Bot.Core/Commands/BaseCommand.cs @@ -31,13 +31,13 @@ protected BaseCommand(IRepository repository, UserRole roleRequired, bool isEnab
CommandWords = RefreshCommandWords();
}
- private string[] RefreshCommandWords()
+ private List<string> Refr... | 1 |
diff --git a/character-controller.js b/character-controller.js @@ -56,7 +56,7 @@ class UniActionInterpolant extends Interpolant {
}
}
}
-class ModActionInterpolant extends Interpolant {
+class InfiniteActionInterpolant extends Interpolant {
constructor(fn, minValue) {
super(fn, minValue);
}
@@ -93,6 +93,7 @@ class Play... | 10 |
diff --git a/website/adminscripts/import.js b/website/adminscripts/import.js @@ -75,7 +75,7 @@ function insertEntry(entryID, buffer){
//----
function toSortkey(s, abc){
- const keylength=5;
+ const keylength=15;
var ret=s.replace(/\<[\<\>]+>/g, "").toLowerCase();
//replace any numerals:
var pat=new RegExp("[0-9]{1,"+ke... | 12 |
diff --git a/source/Renderer/shaders/pbr.frag b/source/Renderer/shaders/pbr.frag @@ -131,6 +131,11 @@ void main()
#ifdef MATERIAL_IRIDESCENCE
vec3 iridescenceFresnel = materialInfo.f0;
+
+ if (materialInfo.iridescenceThickness == 0.0) {
+ materialInfo.iridescenceFactor = 0.0;
+ }
+
if (materialInfo.iridescenceFactor > ... | 12 |
diff --git a/app-template/config-template.xml b/app-template/config-template.xml <preference name="HideKeyboardFormAccessoryBar" value="true"/>
<!-- #355 -->
<!-- <preference name="KeyboardDisplayRequiresUserAction" value="false" /> -->
- <preference name="StatusBarBackgroundColor" value="#000000" />
+ <preference name... | 3 |
diff --git a/scripts/directives/cypress-plugin-example.js b/scripts/directives/cypress-plugin-example.js @@ -9,7 +9,10 @@ function processNode(node, { error }) {
children.length > 2 ||
!children.every(({ type }) => type === 'code')
) {
- return error(`Expected 1 or 2 code blocks inside directive`)
+ return error(
+ `Ex... | 7 |
diff --git a/core/xml.js b/core/xml.js @@ -866,7 +866,6 @@ Blockly.Xml.domToFieldVariable_ = function(workspace, xml, text, field) {
* set.
*/
Blockly.Xml.domToFieldBoundVariable_ = function(workspace, xml, field) {
- var type = xml.getAttribute('variabletype') || '';
var reference = Blockly.Variables.getReferenceById(... | 2 |
diff --git a/src/map/handler/Map.ScrollWheelZoom.js b/src/map/handler/Map.ScrollWheelZoom.js @@ -191,7 +191,7 @@ class MapScrollWheelZoomHandler extends Handler {
Map.mergeOptions({
'scrollWheelZoom': true,
- 'seamlessZoom': false
+ 'seamlessZoom': true
});
Map.addOnLoadHook('addHandler', 'scrollWheelZoom', MapScrollWh... | 12 |
diff --git a/generators/entity-client/templates/angular/src/test/javascript/e2e/entities/entity.spec.ts.ejs b/generators/entity-client/templates/angular/src/test/javascript/e2e/entities/entity.spec.ts.ejs @@ -105,7 +105,7 @@ describe('<%= entityClass %> e2e test', () => {
expect(await <%= entityInstance %>UpdatePage.ge... | 14 |
diff --git a/src/app.js b/src/app.js @@ -175,7 +175,7 @@ export function app(app) {
var oldValue =
name === "value" || name === "checked" ? element[name] : oldData[name]
- if (value !== oldValue && name !== "onupdate") {
+ if (value !== oldValue) {
setElementData(element, name, value, oldValue)
cb = data.onupdate
}
| 11 |
diff --git a/templates/master/routes/bot/alexa.vm b/templates/master/routes/bot/alexa.vm {
"name": "AMAZON.StopIntent"
},
+ {
+ "name": "AMAZON.RepeatIntent"
+ },
{
"name": "AMAZON.CancelIntent"
}
| 3 |
diff --git a/token-metadata/0x558EC3152e2eb2174905cd19AeA4e34A23DE9aD6/metadata.json b/token-metadata/0x558EC3152e2eb2174905cd19AeA4e34A23DE9aD6/metadata.json "symbol": "BRD",
"address": "0x558EC3152e2eb2174905cd19AeA4e34A23DE9aD6",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/app/src/pages/common/settingsPage/defectTypesTab/defectTypesGroup.jsx b/app/src/pages/common/settingsPage/defectTypesTab/defectTypesGroup.jsx @@ -110,7 +110,7 @@ export class DefectTypesGroup extends Component {
color: group[0].color,
typeRef: group[0].typeRef,
}}
- onDelete={this.closeNewSubTypeForm}
+ on... | 1 |
diff --git a/lib/node_modules/@stdlib/strided/common/include/stdlib/strided_typedefs.h b/lib/node_modules/@stdlib/strided/common/include/stdlib/strided_typedefs.h @@ -77,21 +77,28 @@ typedef int8_t (StridedArrayFcnResolutionFcn)( struct StridedArrayObject *obj, u
* #include "stdlib/strided_binary.h"
* #include "stdlib/... | 10 |
diff --git a/src/parser/scalar.js b/src/parser/scalar.js @@ -364,6 +364,7 @@ module.exports = {
this.next();
// check if lookup an offset
// https://github.com/php/php-src/blob/master/Zend/zend_language_parser.y#L1243
+ result.destroy();
if (this.token === "[") {
name = name(varName, false);
node = this.node("offsetloo... | 1 |
diff --git a/CHANGELOG b/CHANGELOG 0.1.6
-----
-* Update version of ai2html. Users will need to reinstall the ai2html.js script (copy from `/etc` to your Illustrator scripts directory). (#230, #311)
* Disable gzip compression at deploy, in favor of compression set at the CDN level (#293, #310)
* Table template: Update ... | 2 |
diff --git a/7-bank-project/api/server.js b/7-bank-project/api/server.js @@ -27,7 +27,7 @@ const db = {
const app = express();
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());
-app.use(cors({ origin: /http:\/\/localhost/ }));
+app.use(cors({ origin: /http:\/\/(127(\.\d){3}|localhost)/}));... | 1 |
diff --git a/modules/@apostrophecms/piece-type/index.js b/modules/@apostrophecms/piece-type/index.js @@ -396,7 +396,7 @@ module.exports = {
'apostrophe:modulesRegistered': {
composeBatchOperations() {
const groupedOperations = Object.entries(self.batchOperations)
- .reduce((acc, [ opeName, properties ]) => {
+ .reduce(... | 10 |
diff --git a/src/entities/SelectInput.js b/src/entities/SelectInput.js @@ -35,11 +35,9 @@ export default class SelectInput extends Component {
}
_onChange() {
- const id = this.props.id
- if(id) {
+ const name = this.props.name
const value = this._getValue()
- this.send('input:change', id, value)
- }
+ this.send('set-v... | 4 |
diff --git a/app/views/friendships/index.html.haml b/app/views/friendships/index.html.haml .col-xs-12
#controls
= form_tag url_for, method: :get, class: "form-inline" do
- = hidden_fields_for_params( without: [:page, :order, :order_by] )
+ = hidden_fields_for_params( without: [:q, :following, :trusted, :page, :order, :... | 1 |
diff --git a/server/src/typeDefs/trigger.js b/server/src/typeDefs/trigger.js @@ -34,7 +34,7 @@ const schema = gql`
addTriggerToSimulator(simulatorId: ID!, trigger: ID!): String
"""
- Macro: Triggers: Remove trigger to simulator
+ Macro: Triggers: Remove trigger from simulator
"""
removeTriggerFromSimulator(simulatorId:... | 1 |
diff --git a/core/frontend/src/cards/css/bookmark.css b/core/frontend/src/cards/css/bookmark.css align-items: flex-start;
justify-content: flex-start;
padding: 20px;
+ overflow: hidden;
}
.kg-bookmark-title {
width: 100%;
font-size: 1.4rem;
font-weight: 500;
+ white-space: nowrap;
}
.kg-bookmark-metadata > *:not(img) {... | 7 |
diff --git a/packages/react/src/components/SuiteHeader/SuiteHeader.jsx b/packages/react/src/components/SuiteHeader/SuiteHeader.jsx @@ -367,11 +367,13 @@ const SuiteHeader = ({
}}
appName={suiteName}
subtitle={
+ appName || currentWorkspaceComponent || extraContentComponent ? (
<div>
{appName}
{currentWorkspaceComponent... | 1 |
diff --git a/src/commands/test.js b/src/commands/test.js @@ -2,7 +2,7 @@ const { Binary } = require('binary-install-raw')
const os = require('os')
const chalk = require('chalk')
const fetch = require('node-fetch')
-const fs = require('fs')
+const { filesystem } = require('gluegun/filesystem')
const { fixParameters } = ... | 14 |
diff --git a/src/OutputChannel.js b/src/OutputChannel.js @@ -257,13 +257,18 @@ export class OutputChannel extends EventEmitter {
} else {
- controller = Math.floor(controller);
+ controller = parseInt(controller);
if (!(controller >= 0 && controller <= 119)) {
throw new RangeError("Controller numbers must be between 0 ... | 7 |
diff --git a/lib/model.js b/lib/model.js @@ -1259,8 +1259,11 @@ Model.find = function find(conditions, projection, options, callback) {
var mq = new this.Query({}, {}, this, this.collection);
mq.select(projection);
mq.setOptions(options);
- if (this.schema.discriminatorMapping && mq.selectedInclusively()) {
- mq.select... | 1 |
diff --git a/docs/_layouts/docs.html b/docs/_layouts/docs.html @@ -20,9 +20,9 @@ layout: default
<h2 id="{{ method.id }}" class="ui header">
<code>{{ method.signature }}</code>
{% if method.generator %}
- <span class="ui tiny red label">Generator</span>
+ <span class="ui small red horizontal label">Generator</span>
{% ... | 7 |
diff --git a/src/components/Personalization/index.js b/src/components/Personalization/index.js @@ -10,33 +10,14 @@ OF ANY KIND, either express or implied. See the License for the specific languag
governing permissions and limitations under the License.
*/
-import { isNonEmptyArray, uuid } from "../../utils";
+import { ... | 2 |
diff --git a/lib/errors.js b/lib/errors.js @@ -58,8 +58,10 @@ class GitCleanWorkingDirError extends ReleaseItError {
super(
'Working dir must be clean.' +
EOL +
- 'Please either stage and commit your changes, ' +
- 'or use the `requireCleanWorkingDir: false` option to include the changes in the release commit.'
+ 'Plea... | 7 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.